Directory dialog in weborms

Directory dialog in webforms
I have oracle metalink note 74140.1 which describes how to implement get_file_name in webforms by way of a javabean.I have done this and it works ok and i get the file path back in my form.My question is , I need also a directory only dialog similar to the above filename dialog.How do I implement get_file_name in webforms for directory selection only.

Thanks Duncan , Have you actually got this to work when integrated in a form.I can get this to work standalone in JDeveloper , but when I integrate into the form via a bean area and press the button to bring the dialog up , I get no response.I have checked Jinitiator panel (I'm using oracle9ids with jinit 1.3.1.8) and there are no security exceptions.I have checked my classpath and included the necessary jars in that and in the config file.Do I need to set anything else?
Regards
Simon

Similar Messages

  • Create Directory Dialog box without specifying file name

    Hi all Programmers/Developers/JDC memebers
    I would like to know in java is there any method or class which helps to give directory dialog box without specifying filename.
    I mean to say if u have c,d,e drives and some directories under them
    c:\dir1
    c:\dir2
    d:\dir1
    d:\dir2
    i want a dialog box,which dispalys all the directories of the selected drive and upon choosing/selecting that directory i should be able to get all the files under them.

    Hi,
    You can write a file filter for a JFileChooser, in the following way,
    public class DirectoryFilter extends javax.swing.filechooser.FileFilter
    public boolean accept(java.io.File file)
    boolean filter = false;
    if(file.isDirectory())
    filter = true;
    return filter;
    public String getDescription()
    return "Directories only";
    //in your code
    JFileChooser fileChooser = new JFileChooser();
    fileChooser.setFileFilter(new DirectoryFilter());
    fileChooser.showOpenDialog() etc. etc..
    There's one small issue, by default JFileChooser has a filter called all files filter which you can select from the combo labled "files of type" . So, your file filter won't apply if this filter is chosen.
    To disable the all files filter
    use
    fileChooser.setAcceptAllFileFilterUsed(false);
    and only if you are on jdk1.3 or greater since this is a private method in the JFileChooser in 1.2.2 .
    Hope this helps,
    regards,
    Manish     

  • JFileChooser go into specified directory (dialog)

    Hi.
    When creating a file-chooser like this:
    this.demoFileFC = new JFileChooser();
    this.demoFileFC.setSelectedFile(someDirectoryFile);someDirectoryFile is a java.io.File that is set to an existing directory. The problem now is that when I create a dialog using the "showOpenDialog(parentFrame)" method that the view shows me view from one level above.
    E.g. if the someDirectoryFile would be set to "D:\temp\test", then the dialog would be in the directory "D:\temp". How can I set it up that it actually goes into the D:\temp\test\ directory? Is it only possible by hacking, that is, by adding some bogus stuff to the File
    (e.g. File someDirectoryFile = new File("D:\\temp\\test\\bogusString") ?
    I also have a second question: if the File object I hand to the filechooser's setSelectedFile() method is actually a file, how can I make the showOpenDialog to actually select (blue background) the selected file (instead of just showing its name in the File name field at the bottom of the dialog) ?
    Kind regards!

    Thanks, that helped.
    Does anybody have an idea about my other question, that a file set by filechooser.setSelectedFile(...) is also selected (marked) automatically in the dialog created by showOpenDialog() ?

  • Some qt only programs are crashing opening the "Open File" dialog

    Hello Archers,
    I'm having some trouble to find out what's crausing the crashes, so i can properly fill a bug report upstream.
    Here is the issue:
    * After an upgrade from glibc 2.13-5 to glibc 2.14-4, some qt-only apps are crashing when i open the "Open File" dialog. This only happens when using specific KDE 4.6.4 or KDE 4.6.5 styles, like Oxygen and QtCurve.
    * Before i upgrade KDE from 4.6.4 to 4.6.5, i downgraded glibc and its dependencies to glibc 2.13-5 and the bug was gone. After upgrading KDE to 4.6.5, i didn't try the downgrade again because KDE 4.6.5 requires glibc 2.14 and the process of downgrading become unsustainable.
    * I tried removing the crashing apps data from my home directory and the crash still exists. I also tried to create a new user and start the apps from that new environment and the apps crashes, so the bug is not user-specific.
    * I tried replacing the binary nvidia driver with xf86-video-nouveau but the issue persists.
    * The apps crashing (and not applying the kde theme) are the following:
    => opera 11.50
    When opening the "Open File" dialog, it crashes with the following message:
    ------------- begin ---------------------------------
    $ opera --sync
    (operapluginwrapper:2349): Gdk-WARNING **: GdkWindow 0x7400034 unexpectedly destroyed
    (operapluginwrapper:2349): Gdk-WARNING **: GdkWindow 0x7400033 unexpectedly destroyed
    (operapluginwrapper:2349): Gdk-WARNING **: GdkWindow 0x7400032 unexpectedly destroyed
    (operapluginwrapper:2349): Gdk-WARNING **: GdkWindow 0x740001c unexpectedly destroyed
    The program 'operapluginwrapper' received an X Window System error.
    This probably reflects a bug in the program.
    The error was 'BadWindow (invalid Window parameter)'.
      (Details: serial 547 error_code 3 request_code 18 minor_code 0)
      (Note to programmers: normally, X errors are reported asynchronously;
       that is, you will receive the error a while after causing it.
       To debug your program, run it with the --sync command line
       option to change this behavior. You can then get a meaningful
       backtrace from your debugger if you break on the gdk_x_error() function.)
    ------------- end ---------------------------------
    => vlc 1.1.10
    When opening the "Open Directory" dialog, it crashes with the following message:
    ------------- begin ---------------------------------
    $ vlc
    VLC media player 1.1.10 The Luggage (revision exported)
    Blocked: call to unsetenv("DBUS_ACTIVATION_ADDRESS")
    Blocked: call to unsetenv("DBUS_ACTIVATION_BUS_TYPE")
    [0x9884a7c] main interface error: no suitable interface module
    [0x97e28fc] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
    Blocked: call to setlocale(6, "")
    Blocked: call to setlocale(6, "")
    Segmentation fault
    ------------- end ---------------------------------
    * Using other qt-only apps, like qmmp or UMPlayer the bug doesn't occur.
    So, what do you thing of this? Am i the only one with this issue? I already reported the bug report on https://bugs.archlinux.org/task/24991 and https://bugs.opera.com/wizard/, but since i latter found out that this is not opera specific, i don't know where to fill the report. 
    Thanks in advance.
    Last edited by eldarion (2011-07-09 15:15:13)

    kachelaqa wrote:
    eldarion wrote:kachelaqa, can you please confirm if it happens with vlc or opera too? Thanks for helping.
    i had to install vlc and opera to test - but i'm afraid i don't get the errors you are seeing.
    so far, qt designer is the only application i've found that crashes when opening file dialogs.
    Ok, thanks for helping.

  • The "open with" dialog doesn't drop down associated applications

    Although I have correctly associated applications to handle specific file types in FF4.0 I am always asked to choose an application in the open/save dialog. Is there any way I can set some sort of drop-down list showing the associated applications for me to choose one? Thanks!

    I have found further issues with the open directory dialog in FM 9 and FM 10, so I thought I would share them in case any developers run into them.
    If the F_ApiChooseFile directory argument is specified as a non-empty string and that path is not valid (i.e. the string cannot be evaluated to an existing directory) the open directory dialog will not be displayed and the function will return immediately without reporting an error in FA_errno. I think most developers who have tried to use the dialog have discovered this behaviour. If you are going to supply the directory argument you should check the path exists before calling F_ApiChooseFile.
    Also, if the F_ApiChooseFile directory argument is specified as an empty string, the function gets the FP_OpenDir property to use for the directory. If FP_OpenDir is not an existing directory (for example, the directory existed in the previous FrameMaker session and at the end of that session the value was saved in the maker.ini, but since then the user has deleted the directory) the open directory dialog will not be displayed and the function will return immediately without reporting an error in FA_errno.
    This problem occurs with API clients built with FDK 9 and FDK10 in FM 9 and FM 10.
    The workaround to this issue is to get FP_OpenDir and check it is a valid path. If it is not valid set it to a valid directory (such as the user's home directory, the FrameMaker current directory or the root of the drive) before calling F_ApiChooseFile.
    It is a pity that the FP_UserHomeDir property of the FO_Session object is not valid in Windows. It would be ideal if this property returned the user's My Documents directory in Windows.

  • Cannot create Virtual Directory in Windows Server 2008 R2 SP1 Environment

    Dear all,
    I am trying install Reporting Services 2005 on a Windows Server 2008 R2 SP1 Enterprise machine.
    So far we successfully did the following steps
     - Install SQL Server Reporting Services
     - Configure Service Account (Domain-User)
    After creating virtual Directory, we made several steps to avoid HTTP 400 Bad Request in Report Manager:
    1. Disable LSA Loopback in Registry and restart server
    2. Enhance Service Startup time to 60000ms and restart Server
    3. Set Application Pool to ASP.NET 2.0 Classic Mode
    4. Modify RSWebApplication.config and set These entries:
    <ReportServerUrl>http://servername/ReportServer</ReportServerUrl>
    <ReportServerVirtualDirectory></ReportServerVirtualDirectory>
    After all the Reporting Services Configuration Manager still shows a red sign and we cannot continue creating the database.
    How is it possible to solve this?
    We appreciate any help.
    Best regards,
    Mark
    Mark Kuschel
    Blog
    Xing

    Hi Mark,
    As per my understanding, we can refer to the following methods to troubleshooting the issue you occurred.
    Install SQL Server 2005 Service Pack 3.
    Deleting the newly-created virtual directory using IIS manager and then rebooting the server.
    In the Report Manager Virtual Directory dialog box, create a virtual directory for Report Manager, then change the Website to Reporting.
    Enable Apply default settings.
    The following link is for your reference:
    http://www.mathgv.com/sql2005docs/SQL2005ReportingServicesInstall.htm
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Browse directory in application server

    I would like to ask if there is any FM provide similar result to that of CL_GUI_FRONTEND_SERVICES=>DIRECTORY_BROWSE
    but browsing the directories in application server?
    I want to open a browse directory dialog for input and return the directory path only (doesn't include file name).
    Thanks!

    Hi Gundam,
    Use the following code :
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_apath.
    Open the Browse Dialog Box on the Application Server
      CALL FUNCTION '/SAPDMC/LSM_F4_SERVER_FILE'
        IMPORTING
          serverfile       = p_apath
        EXCEPTIONS
          canceled_by_user = 1
          OTHERS           = 2.
      IF sy-subrc <> 0.
      No need to check for sy-subrc
      ENDIF.
    <b>Please mark helpful answer.</b>
    Regards,
    Amit Mishra

  • Beta installer will not continue past "Select Installation Directory"

    I was able to install the beta s1as 7.0 application server on one Windows 2000 box. A second box fails to continue past the "Select Installation Directory" dialog. All buttons except the browse button do nothing. "Back", "Next", "Cancel" and "Help", they do not get focus. This is true whether I use the browse to pick the installation directory or not.

    Same Error:
    INFO: End output from spawned process.
    INFO: ----------------------------------
    INFO: Calling Action unixActions10.2.0.1.0 make
    installMakePath = /usr/bin/make
    installMakeFileName = /u01/app/oracle/product/10.2/client/network/lib/ins_net_client.mk
    installTarget = client_sharedlib
    installArguments = ORACLE_HOME=/u01/app/oracle/product/10.2/client,
    undoMakeFileName = null
    undoTarget = null
    undoArguments = null
    logFile = /u01/app/oracle/product/10.2/client/install/make.log
    progMsg = Building client shared libraries
    INFO: The output of this make operation is also available at: '/u01/app/oracle/product/10.2/client/install/make.log'
    INFO:
    INFO: Start output from spawned process:
    INFO: ----------------------------------
    INFO:
    INFO: /u01/app/oracle/product/10.2/client/bin/genclntsh
    INFO: /lib64/libpthread.so.0: file not recognized: File format not recognized
    collect2: ld returned 1 exit status
    genclntsh: Failed to link libclntsh.so.10.1
    make: *** [client_sharedlib] Error 1
    INFO: End output from spawned process.
    INFO: ----------------------------------
    INFO: Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'client_sharedlib' of makefile '/u01/app/oracle/product/10.2/client/network/lib/in
    s_net_client.mk'. See '/home/oracle/oraInventory/logs/installActions2009-06-09_08-55-15AM.log' for details.
    Exception Severity: 1
    My .bashrc looks like:
    export ORACLE_BASE=/u01/app/oracle
    export ORACLE_HOME=$ORACLE_BASE/product/10.2/client
    export ORACLE_SID=DB_1
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib

  • Choose directory...

    How invoke choose directory dialog box? I found dialog box for choosing files but for directories I didn't. Could anyone help me?

    There is a component which can be used for choosing directories..The JFileChooser component
    use the setFileSelectionMode(int mode) function to set the selection criterion, as follows...
    jfc.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY)where jfc is the object of JFileChooser.

  • What's Wrong With This Code?

    I've been trying to get a test automaton plugin to work.  It builds correctly with no errors or warnings yet when I attempt to use it, I get no results.  No errors either.  All its intended to do is Copy > Make New Layer > Paste.  The code is below.  The sample code used was the MakeSelectFill plugin that I modified from the old 6.0 SDK along with using an older copy of Visual C++ that can open the project.  Any help is much appreciated.
    #include <stdio.h>//defines sprintf
    #include "PIUGet.h"//defines PIUGetInfo, not used in MakeSelectFill
    #include "PIDefines.h"//defines __PIMac__, __PIWin__
    #include "PIGeneral.h"//defines kPSPhotoshopCaller, kPSDoIt
    #include "SPInterf.h"//defines kSPInterfaceCaller, kSPInterfaceAboutSelector,
                                                                                                                   //kSPInterfaceStartupSelector,
    #include "SPBasic.h"//defines SPBasicSuite
    #include "SPAccess.h"//defines kSPAccessCaller, kSPAccessReloadSelector,
                                                                                                                   //kSPAccessUnloadSelector, not used in MakeSelectFill
    #include "PIActions.h"//defines PSActionDescriptorProcs, PSActionReferenceProcs,
                                                                                                                   //PSActionControlProcs
    #include "ADMBasic.h"//contains cross-platform alert dialogs, about boxes,
                                                                                                                   //file and directory dialogs, string conversions
    #include "PIUSuites.h"//defines PIUSuitesAcquire and PIUSuitesRelease
    //          Function Prototypes.
    DLLExport SPAPI SPErr PluginMain(const char* caller,
                                                                                    const char* selector,
                                                                                    const void* data );
    //          Globals -- Define global variables for plug-in scope.
    SPBasicSuite                              *sSPBasic = NULL;// the Basic Suite
    //create pointers to the suites
    PSActionDescriptorProcs          *sPSActionDescriptor = NULL;
    PSActionReferenceProcs          *sPSActionReference = NULL;
    PSActionControlProcs          *sPSActionControl = NULL;
    PSActionListProcs                    *sPSActionList = NULL;
    ADMBasicSuite                              *sADMBasic = NULL;
    _AcquireList MySuites[] =
              kPSActionDescriptorSuite, kPSActionDescriptorSuiteVersion, (void **)&sPSActionDescriptor,
              kPSActionReferenceSuite, kPSActionReferenceSuiteVersion, (void **)&sPSActionReference,
              //note that the previous version of the Control suite is used for compatibility with 5.5
              kPSActionControlSuite, kPSActionControlSuitePrevVersion, (void **)&sPSActionControl,
              kPSActionListSuite, kPSActionListSuiteVersion, (void **)&sPSActionList,
              kADMBasicSuite, kADMBasicSuiteVersion, (void **)&sADMBasic
    //          PluginMain
    //          All calls to the plug-in module come through this routine.
    //          It must be placed first in the resource. To achieve this,
    //          most development systems require this be the first routine
    //          in the source.
    //          The entrypoint will be "pascal void" for Macintosh,
    //          "void" for Windows.
    DLLExport SPAPI SPErr PluginMain(const char* caller, // who is calling
                                                                                    const char* selector, // what they want
                                                                                    const void* data )// the message
              SPErr error = kSPNoError;
              SPMessageData *basicMessage = NULL;
              // all messages contain a SPMessageData*
              basicMessage = (SPMessageData *) data;
              sSPBasic = basicMessage->basic;
              // acquire all the global suite pointers now
              error = PIUSuitesAcquire(sSPBasic,
                                       MySuites,
                                       sizeof (MySuites) / sizeof (_AcquireList));
              if (error) return error;
              // check for SP interface callers
              if (sSPBasic->IsEqual((char*)caller, kSPInterfaceCaller))
                        if (sSPBasic->IsEqual((char*)selector, kSPInterfaceAboutSelector))
              // Photoshop is calling
              if (sSPBasic->IsEqual((char*)caller, kPSPhotoshopCaller))
                        // the one and only message
                        if (sSPBasic->IsEqual((char*)selector, kPSDoIt))
              // clean up, free memory
              PIUSuitesRelease(sSPBasic,
                               MySuites,
                               sizeof (MySuites) / sizeof (_AcquireList));
              return error;
    }/*end PluginMain*/
    //          Test Plugin
    //          This plugin is used as a test.
    //          Its functions are Copy > Make New Layer > Paste
    SPErr Copy(void)
         PIActionDescriptor result = NULL;
         SPErr error = kSPNoError;
         error = sPSActionControl->Play(&result, eventCopy, NULL, plugInDialogSilent);
         if (error) goto returnError;
    returnError:
         if (result != NULL) sPSActionDescriptor->Free(result);
         return error;
    //make new layer here//
    SPErr MakeLayer(void)
              PIActionDescriptor descriptor = NULL;
              PIActionReference reference = NULL;
              PIActionDescriptor result = NULL;
              SPErr error = kSPNoError;
              error = sPSActionDescriptor->Make(&descriptor);
              if (error) goto returnError;
                        // Move this to the top of the routine!
                        error = sPSActionReference->Make(&reference);
                        if (error) goto returnError;
                        error = sPSActionReference->PutClass(reference,classLayer);
                        if (error) goto returnError;
                        error = sPSActionDescriptor->PutReference(descriptor,keyNull,reference);
                        if (error) goto returnError;
                        error = sPSActionControl->Play(&result,eventMake,descriptor,plugInDialogSilent);
                        if (error) goto returnError;
    returnError:
                        if (result != NULL) sPSActionDescriptor->Free(result);
                        if (descriptor != NULL) sPSActionDescriptor->Free(descriptor);
                        if (reference != NULL) sPSActionReference->Free(reference);
                        return error;
    //end make new layer//
    //start paste//
    SPErr Paste(void)
    PIActionDescriptor result = NULL;
    SPErr error = kSPNoError;
    error = sPSActionControl->Play(&result,eventPaste,NULL,plugInDialogSilent);
    if (error) goto returnError;
    returnError:
    if (result != NULL) sPSActionDescriptor->Free(result);
    return error;
    //end paste//
    // all windows plug-ins need a DllMain
    #ifdef __PIWin__
    BOOL APIENTRY DllMain( HANDLE hModule,
                                                              DWORD ul_rearson_for_call,
                                                              LPVOID lpReserved )
              return TRUE;
    #endif

    You seem to be missing something inside here. Probably Copy();MakeLayer();Paste();
    // Photoshop is calling
              if (sSPBasic->IsEqual((char*)caller, kPSPhotoshopCaller))
                        // the one and only message
                        if (sSPBasic->IsEqual((char*)selector, kPSDoIt))

  • Import from digital camera no longer works

    iPhoto 6.0.6
    I suddenly can't import photos from my Casio digital camera.
    It worked fine two months ago, with the same computer and the same camera.
    When I connect the camera to the computer, and turn the camera on, the camera appears on the Desktop, and iPhoto launches.
    At this point iPhoto used to display an "Import" button.
    But not anymore.
    Now iPhoto just displays the photo library with the already imported photos.
    No "Import" button.
    To force the import I tried Shift-Command-I.
    (I have never tried Shift-Command-I before, but I suppose it was worth a try)
    Shift-Command-I gave me a directory dialog box.
    In the directory dialog box I navigated to the camera, found the camera's subfolder with photos, and clicked "Import" in the directory dialog box.
    iPhoto began to prepare for import, but crashed after five seconds.
    Clicking on "Stop Import" had no effect, and I had to force quit.
    I tried all the above several times, and got the same result every time.
    Any ideas?
    Peter Thomsen
    iMac, 2.16 GHz Intel Core 2 Duo   Mac OS X (10.4.10)  

    Try:
    1- log into another account and try importing into a test library there (do no have iPhoto delete the files!).
    2 - boot into Safe Mode and try in your primary account.
    It you can't import in #3 and can in #2, a reinstall of iPhoto would seem to be mandated.If you do try a reinstall of iPhoto you'll have to delete the current application and all files with "iPhoto" in the file name that reside in the HD/Library/Receipts folder.
    If you can't import in either #2 or 3, then a reapplication of the 10.4.10
    COMBOupdater is suggested. Followed by a repair of disk permissions, of course.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • PCI6602

    Helo, plz help me in installing counterpallets for PCI 6602..I was working in LV 6.1..somehow some programs are opened in LV 7.0 and after that i couldn't drag DIO pallets displaying the error "version 7.0 is newer than 6.2.".how i can I get out of this problem..Plz help me...

    To save a VI (and its hierarchy) for a previous version of LabVIEW, complete the following steps:
    Using LabVIEW 7.0 or earlier:
    For the top-level VI in your hierarchy of VIs, select File»Save with Options to display the Save with Options dialog box.
    Select Save for Previous to save the VI hierarchy for the previous version.
    Click the Save button to display the Choose a Directory dialog box.
    Select the directory where you want to save the VI hierarchy.
    Click the Save button.
    Source
    Ian S
    Applications Engineer CLD
    National Instruments UK&Ireland

  • Starting the application server

    Hi,
    I am new to Java Studio Enterprise 8. I try this tutorial
    http://developers.sun.com/prodtech/javatools/jsenterprise/learning/tutorials/jse7/introjse7/index.html#Step_2:_Make_sure_Sun_Java_System_App
    which is for Java Studio Enterprise 7.
    I stop the firewall before anything :
    [X@Y Zip]$ sudo service iptables status
    Firewall is stopped.
    I start Java Studio Enterprise 8 IDE under Linux ([installdir]/jstudio_ent81/ide/bin/jstudio.sh). I clicked on runtime, I have two bullets, Bundled Java Tomcat (5.5.9) and Sun Java System Application Server. Unfortunately, unlike the picture provided on the tutorial I don't have an application server automatically started.
    I tried to start the tomcat server, this worked fine, I can use my browser to log on the tomcat server, http://localhost:8084. I switched it off.
    I tried starting the application server similarly but I get the following message after 5 minutes :
    "Error : The Sun Java System Application server could not start. More information about the cause is in the server log file. Possible reasons include:
    - Unknown master password (etc...)
    -Port conflicts (etc...)
    -Incorrect server information (etc...)
    -Corrupted Deployed Applications preventing the server to start (This can be seen in the server log file. etc... )"
    I don't think I've got anything running on those ports.
    [X@Y Zip]$ netstat -an|grep 8080
    [X@Y Zip]$ netstat -an|grep 8181
    [X@Y Zip]$ netstat -an|grep 4848
    [X@Y Zip]$ netstat -an|grep 7676
    [X@Y Zip]$ netstat -an|grep 3820
    [X@Y Zip]$ netstat -an|grep 3700
    [X@Y Zip]$ netstat -an|grep 5222
    In the server log file, I can't see much which would help [it seems to be long java command lines, but no particular message related to an error or a warning...]
    Thanks for your help,

    I reset the master password, but it did not change anything.
    I reinstalled everything, tried again, and still nothing on this side.
    There isn't anything in the log [when I click on "View server log" I get a "no such file or directory" dialog box...].
    When I click on start, I immediately get the following message on the shell :
    "Internal HTTP server running on port 8082" and I can use my web browser to go on "http://localhost:8082/"...

  • I am trying to use generate code in signal express to import into labview.

    I get this error when i try to generate code in signal express to export to labview . I have tries the error suggestions but I am still having problems. any help would be appreciated
    The version of LabVIEW you are generating code into does not contain all the necessary SignalExpress support files. Make sure you launch the version of LabVIEW with SignalExpress support installed before generating code from SignalExpress. If you want to generate code into more than one version of LabVIEW, uninstall SignalExpress and all versions of LabVIEW except the earliest.  Install SignalExpress, then install any other versions of LabVIEW.  Copy the files from the vi.lib\express\SignalExpress directory of the earliest installed version of LabVIEW into the same sub-directory location of any other version of LabVIEW in which you want to include support for code generation.

    Typically, this problem is repaired by following the directions on the error message. Since it was not, can you please give us more information so we can start determining the cause?
    What version or versions of LabVIEW do you have installed? What version or versions of SignalExpress do you have installed? Could you post a file with a listing of the files in <vi.lib>\express\SignalExpress for the version of LabVIEW you are trying to use. You can either post a screenshot (in PNG or GIF format) of the directory dialog or use the command prompt to generate a list to a file (preferred). To generate a list with the command prompt, do the following:
    Launch the command prompt from the start menu — Start»Programs»Accessories»Command Prompt
    Navigate to the drive you have LabVIEW installed on ( usually C: ) — C:
    Change directory to the appropriate LabVIEW directory — cd "\Program Files\National Instruments\LabVIEW 8.2\vi.lib\express\SignalExpress". Change the LabVIEW version to the one you actually are using. Do a directory listing and redirect the output to a file — dir > filename.txt. You can use any full path for the filename.txt. If you specify a simple name, it will end up in the current directory.
    Please post your project. Verify that you are using the version of LabVIEW you think you are by launching it before you start code generation.
    Thanks for your patience.
    Message Edited by DFGray on 08-28-2008 08:23 AM
    Message Edited by DFGray on 08-28-2008 08:24 AM
    This account is no longer active. Contact ShadesOfGray for current posts and information.

  • 4.0 beta 9 - pop up "save image as ..." sometimes does not work

    is the 3rd time that I found "save image as ..." does not work
    the cursor chages to processing in background but when you move the mouse it comes back to the ready pointer and nothing happens.The expected behaiveour is to show the directory dialog to cho0se the name and where to save the file.
    Also I try in the File menu the "Save Page as" without any success (no directory dialog neither).
    Actually I have the brower open and under this conditions how can I do a dump to help the developer to debug this?

    Create a new profile exclusively for the 4.0 beta version and create a desktop shortcut with -P "profile" appended to the target to launch that profile.
    * http://kb.mozillazine.org/Testing_pre-release_versions
    * http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    * http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    * http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]]

Maybe you are looking for

  • Multiple Buttons linking to Multiple pages from one movie

    Hi All, I have a flash movie with 3 buttons I am trying to link relativley to pages within my site, I have one working fine but can't get the others to link and when I try it makes the one that is working, work no more.. Below's the code I am using f

  • Closing the IE browser thro' Java application

    Hi, I have a requirement wherein I have to close the applications launched like (Internet exploer window) thro my java application. Can anyone help me on this? I tried using Runtime class Process.destroy( ) method. But still not able to find the exac

  • No payment confirmation

    Hi, I payed for LiteRoom but did not get any responses ... such as payment/purchase confirmation and I did not see order number in my payment list. Please advise ASAP. Thanks, Evgeny.

  • Is there any way to find out what brush is applied to a path?

    I'm trying to write a script: select some paths, run the script, then each path that has a brush applied to it is changed to use a random brush whose name is sufficiently similar to its current brush. The application is pretty obvious - draw a bunch

  • JRockit with -Xmanagement & JBoss 4 does not start

    Hi, I tried to start JBoss 4 with the management console: a fresh JBoss 4, just compiled from source with no special application on it, that starts alright with JRockit without the management console (and also with Sun JVM jdk 1.5). Does anybody know