Problem run command from window

Hello,
I make a script for Indesign.
I add menu with two item.
First item opens a Dialog and it runs function, after click Save, that it add or modify xmlAttributes. It works !!
Second item opens a Window and run function, after click Buttom element Save, that it add or modify xmlAttributes. It not works.
I need to create a window, because I need to create dynamic dropdown with onChange event..
Thanks for help!

Making sqlplus work is one thing, but cloning a complete database is accelerating from 0 to 100 at the speed of a wink. I suggest you to get involved with recovery manager and recovery concepts. Once you understand how a recovery process is being carried out I suggest you this link: --> Clone a Database Using RMAN
~ Madrid
http://hrivera99.blogspot.com/

Similar Messages

  • Windows 8.1 Problem with games from windows store.

    I've got a problem with games from windows store. The installation is going well without any problems, however when I try to open it it's loading and then it turns off. The same problem happens when I try to use Games for Windows. I've use a sfc scan and
    it shows some errors but unfortunately it cannot fix them. Should I share the CBS log or find the solution somewhere else? I hope you help, best regards.

    Hi,
    According to my experience, the problem like store game app open failed probably caused by hardware driver. such as Audio and Graphic driver. So, first of all, please try to reinstall these two driver to fix this problem for test.
    In addition, for SFC scan failed problem, it can be caused by many reasons, I would suggest you use another command to fix your system for test.
    Dism /Online /Cleanup-Image /ScanHealth
    Also you can test SFC command in Windows 8.1 safe mode.
    Thirdly, if problem persists, please check Event Viewer, generally speaking, it would record the app open failed events.
    Roger Lu
    TechNet Community Support

  • Run Scripts from windows command line

    Hi, We're creating a test enviroment and we need to "rebuild" our Database (Tablespace) from scratch everytime we run a test.
    What we need is to run all scripts files from windows command line, there is any command or application we can use here?
    thanks.
    Fernando.

    Create a scripts.bat file with something like this in it:
    @sqlplus -S username/password@connect @scriptname.sql

  • Problem running Ensemble on Windows 7

    Hello,
    I am reading documentation in an effort to learn more about JavaFX. I came to a point where I wanted to use Ensemble in order to explore the available components and techniques.
    This is where I ran into a wall. Running this url in Chrome or Internet Explorer only gives a preloader: http://download.oracle.com/otndocs/products/javafx/2.2/samples/Ensemble/index.html
    I then downloaded the samples at http://download.oracle.com/otn-pub/java/javafx/2.2.0-b21/javafx_samples-2_2_0-windows.zip
    There I tried dragging the Ensemble.html into one of the browsers: same result. Double clicking the 'Ensemble.jnlp' file yields a 'hs_err_pid####.log' file. Running it from the console using 'java -jar Ensemble.jar' also gives a log file and the following error on screen:
    ---- FetchDocListTask docsUrl = http://download.oracle.com/javafx/2/api/
    # A fatal error has been detected by the Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x000000006a5321b6, pid=1576, tid=8180
    # JRE version: 7.0_06-b24
    # Java VM: Java HotSpot(TM) 64-Bit Server VM (23.2-b09 mixed mode windows-amd64 compressed oops)
    # Problematic frame:
    # C [glass.dll+0x121b6] Java_com_sun_glass_events_KeyEvent__1getKeyCodeForChar+0x11a6
    # Failed to write core dump. Minidumps are not enabled by default on client versions of Windows
    # An error report file with more information is saved as:
    # D:\temp\javafx\samples\javafx-samples-2.2.0\hs_err_pid1576.log
    # If you would like to submit a bug report, please visit:
    # http://bugreport.sun.com/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    I have tried with both 64 and 32 bit Java versions. I used the latest version available at time of writing: 7.0_06
    Do you have any idea what I can try next in order to get this running?
    Thanks, Erik

    Yes, as I said in my previous post, I ran it from the command line. Thats where the error I posted came from.
    I did download the latest video drivers, it did not help.
    Just a moment ago I uninstalled all java related stuff and installed 7 update 5. With quite some effort (and some help from google) I managed to get the [Ensemble app for 2.1.1|http://www.prodefence.org/index.php/topic/5013-javafx-211/] . That one starts without a problem, which means I can continue my exploration for now.
    Tomorrow evening I will take the time to gather extra information and file a bug at the Jira you mentioned.
    Thank you for your quick response.

  • ItunesU videos not playing in Itunes but play ok if you download to laptop's drive and run them from windows directory

    I'm having a problem playing some ItunesU videos, some play okay, some just show black screen and don't play, others show a still image but then doesn't play when trying to view them from itunes store. The audio files play with no issues.
    I am using windows 7.
    However, if I download the videos that don't play to the laptop's drive and run them from the windows directory they play okay. I don't want to have to download videos to see if they are something I'd like to watch.
    Just for reference, an example of a video that plays okay is by UC Berkeley Math 16A 001, Fall 2011. Another is Introduction to Robotics by MIT.
    An example that just shows blank screen is Stanford's Iphone & Ipad development, Fall 2011, both HD and SD versions.
    While an example of a video that just shows the initial image but doesn't play is Harvard's Statistics 110. If you adjust the time of the video, the video moves to that part of the video but only shows the image at that time, ex. at 13:02, but doesn't play.
    I've tried reinstalling quicktime first, then itunes. I've also tried putting directdraw in safe mode, but the problem videos still won't play.
    Could it be some setting, since it plays when the file is downloaded but won't play straight from itunes store online (ie. pressing the play button beside the video in the itunes list).
    Help pls.

    You might have more luck asking on a general Windows troubleshooting site, but my guess would be an invalid or old audio or CD driver (or firmware in the drive). You might try checking those to make sure you have the correct and most current drivers.

  • Running command from command prompt

    hai all,
    iam using Javamail to send emails. for that iam using the command prompt.the code for executing the commands from the command prompt is as given below.
    public static String runCommand(String s)
    String result=new String();
         try
         //the command is executed and stored in 'p'
         Process p=Runtime.getRuntime().exe("cmd /c "+s);
         result=(loadStream(p.getInputStream()));
         if(p.waitFor()!=0)
         System.out.println("Exit Value = "+p.exitValue());
         System.out.println("Wait for = "+p.waitFor());
    System.out.println("Result is "+result);
         catch(IOException e)
    System.out.println("IO Exception");
         e.printStackTrace();
         catch(InterruptedException e)
    System.err.println("Interrupted waiting for process!");
         return result;
    the contents of the 'javamail' directory are
    activation.jar, mail.jar, Msgmultisendsample.java and Msgmultisendsample.class
    in the first call to this method i pass the string "set classpath=%classpath%;e:\javamail\mail.jar;e:\javamail\activation.jar;e:\javamail; " here i set the classpath since i will be executing the command from the command prompt.the command works fine and the exitValue() is 0.
    in the second call to this method i pass the string "java Msgmultisendsample [email protected] abc 123.456.789.012 true" for running the Msgmultisendsample.class file. but i get the exitValue() as 1 and the command is not getting executed. i dont know how handle this change in the exitValue().
    both the above commands works fine if i run directly from C:\ but not when called to this method.
    Please help me out people, i will be glad to receieve the replies as early as possible since i have to submit this tomorrow.
    Thanks in advance,
    Jayanth.

    well, the problem is not with the command line arguments. it doesnt matter if we get the input from the user through command prompt or GUI. The problem is only in the handling of the change in exitValue during running.

  • Problem invoking JVM from Windows

    Hi all,
    I tried to create a JVM instance as laid out in the examples. The JVM is never getting created. I am using Visual C++ (I need to, when the code works I will be creating a DLL that is an addon to someother piece of software).
    I have posted the code below::
    #include "stdafx.h"
    #include "invoke2.h"
    #ifdef _DEBUG
    #define new DEBUG_NEW
    #undef THIS_FILE
    static char THIS_FILE[] = __FILE__;
    #endif
    // The one and only application object
    CWinApp theApp;
    using namespace std;
    int main(void)
         int nRetCode = 0;
         // initialize MFC and print and error on failure
         if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))
              // TODO: change error code to suit your needs
              cerr << _T("Fatal Error: MFC initialization failed") << endl;
              nRetCode = 1;
         else
              JNIEnv *env;               /* The java vm environment                                        */
              JavaVM *jvm;               /* The actual jvm                                                  */
              CString fname;               /* The file name of the generated intermediate obj file */
              JDK1_1InitArgs vm_args;
              jint res;
              jint vmavail;
              jclass cls;
              jmethodID mid;
              //char classpath[4096];
              bool viewerready;          /* is this java viewer valid?                                   */
              vm_args.classpath=".";
              vm_args.version = JNI_VERSION_1_4;
              vmavail=JNI_GetDefaultJavaVMInitArgs(&vm_args);
              if(vmavail < 0)
                   AfxMessageBox(" That VM version is not available. ",100,100);
                   viewerready=false;
                   jvm=NULL;
                   env=NULL;
              else
                   vm_args.classpath=".";
                   res = JNI_CreateJavaVM(&jvm,(void **) &env,&vm_args);
                   if(res < 0)
                        AfxMessageBox("Could not create JVM instance. \n Check your classpath. \n 3D viewer will not be available. ",100,100);
                        jvm=NULL;
                        env=NULL;
                        viewerready=false;
                   else
                        cls = env->FindClass("OBJViewer");
                        if(cls == 0)
                             AfxMessageBox("Can't find the java OBJViewer class. ",100,100);
                             viewerready=false;
                        mid = env->GetMethodID(cls, "OBJViewer", "");
                        if(mid == 0)
                             AfxMessageBox(" java class OBJViewer has no constructor OBJViewer() ");
                             viewerready=false;
                        env->CallStaticVoidMethod(cls, mid);
         return nRetCode;
    }

    Hey guys :)
    I incorporated the changes suggested by David and "reberst" and then did the stuff told by "LathaDhamo".
    Now I am able to invoke the VM without problems and my test program runs and displays windows and takes in input etc.. Thank you, Thank you, Thank you!!
    But now, I noticed that all this happens only when I am in debug mode in VC++ and step thru the program. When my external program loads the DLL I created automatically, I get the error message that the "JavaTest" class was not found. This will lead to errors when I deploy the DLL or package it for others. How do I ensure that the class is always found? What do I have to do?
    I am sorry for being so amtuerish and asking so many questions. This is my first time using JNI from the native side.
    Thank you,
    vijai.
    JavaOBJViewer::JavaOBJViewer(void)
         memset(&args, 0, sizeof(args));
         args.version = JNI_VERSION_1_4;
         args.nOptions = 2;
         options[0].optionString = "-Djava.class.path=.";
         options[1].optionString = "-Djava.library.path=.";
         args.options = options;
         args.ignoreUnrecognized = JNI_TRUE;
         res=JNI_CreateJavaVM(&jvm, (void **)&env, &args);
         if(res < 0)
              AfxMessageBox(" The JavaVM could not be initialized. \n Refer to the documentation on environment variable settings. \n 3D Viewer will not be available while modeling. ");
              jvm=NULL;
              env=NULL;
              viewerready=false;
         else
              cls = env->FindClass("JavaTest");
              if(cls == NULL)
                   AfxMessageBox("Can't find the java JavaTest class. \n 3D viewer will not be available while modeling. ",100,100);
                   viewerready=false;
              else
                  mid = env->GetStaticMethodID(cls, "main", "([Ljava/lang/String;)V");
                   if(mid == NULL)
                        AfxMessageBox(" java class JavaTest has no main method. ");
                        viewerready=false;
                   else
                        tempf = env->NewStringUTF("testenvp.obj");
                        logf = env->NewStringUTF("java_viewer_log.txt");
                        if((tempf == NULL) || (logf == NULL))
                             AfxMessageBox("The Java VM had insufficient memory to create the argument array. ",100,100);
                        else
                             mainargs = env->NewObjectArray(2,env->FindClass("java/lang/String"), logf);
                             if(mainargs == NULL)
                                  AfxMessageBox("The Java VM had insufficient memory to create the argument array. ",100,100);
                             else
                                  env->SetObjectArrayElement(mainargs,2,tempf);
                                  env->CallStaticVoidMethod(cls,mid,mainargs);
                                  jthrowable exc;
                                  exc = env->ExceptionOccurred();
                                  if(exc)
                                       AfxMessageBox(" An unknown exception occurred. ",100,100);
                                       viewerready=false;
                                  else
                                       viewerready=true;
    }

  • Compile problem running jdev on Windows Terminal Server

    I am experiencing problems compiling java source files in jdev 9.0.3.1035
    Sometimes the class file is not created if i make (compile) only one source file.
    The jdev is running on a Windows Terminal Server 2000.
    The sources are on the same Terminal Server.
    The classes should be compiled to the Terminal Server as well.
    I am working on a Terminal session elsewhere.
    Anyone had this problem before ?

    Georg:
    Q1) What you mean with 'the class file is not
    created'? Is the .class file not overwritten? Is the
    class file for a new file not written? Did you delete
    the class file before compiling?I deleted the class file before compiling!
    Q2) I guess that sources and classes are used by you
    exclusively. Is this right?That is right!
    Q3) In the project settings under Common | Input
    Paths is the option 'Scan Source Path' enabled or
    disabled?Both options have the same effect!
    Q4) When the problem occurs: what is the active
    window (code editor or Navigator)? What node is
    selected in the Navigator?Tried following combinations:
    - Having selected the Project node in the Navigator and the code editor is active window
    - Having selected the class node in the Navigator and the code editor is active window
    - Having selected the Project node in the Navigator and the Navigator is active window
    - Having selected the class node in the Navigator and the Navigator is active window
    Q5) What are the exact steps you took when it
    happens? Do you use mouse or keyboard hotkeys? What
    buttons or menus do you use?- right click in code editor and choose Make from popup menu
    - right click on Long postings are being truncated to ~1 kB at this time.

  • How to Execute Power Shell Command From Windows Application.

    Hi All Experts,
    I want to execute power shell commands from my windows application.
    Is it possible ?
    Please let me know your comments..
    Thanks.

    I have not tried this, but apprently it is easy as in the sample pasted below. please see this article for more details
    http://geekswithblogs.net/Norgean/archive/2012/09/19/running-powershell-from-within-sharepoint.aspx.
    Let me know how it goes...
    public string RunPowershell(string powershellText, SPWeb web, string param1, string param2) {
    // Powershell ~= RunspaceFactory - i.e. Create a powershell context
    var runspace = RunspaceFactory.CreateRunspace();
    var resultString = new StringBuilder();
    try
    // load the SharePoint snapin - Note: you cannot do this in the script itself (i.e. add-pssnapin etc does not work)
    PSSnapInException snapInError;
    runspace.RunspaceConfiguration.AddPSSnapIn("Microsoft.SharePoint.PowerShell", out snapInError);
    runspace.Open();
    // set a web variable.
    runspace.SessionStateProxy.SetVariable("webContext", web);
    // and some user defined parameters
    runspace.SessionStateProxy.SetVariable("param1", param1);
    runspace.SessionStateProxy.SetVariable("param2", param2);
    var pipeline = runspace.CreatePipeline();
    pipeline.Commands.AddScript(powershellText);
    // add a "return" variable
    pipeline.Commands.Add("Out-String");
    // execute!
    var results = pipeline.Invoke();
    // convert the script result into a single string
    foreach (PSObject obj in results)
    resultString.AppendLine(obj.ToString());
    finally
    // close the runspace
    runspace.Close();
    // consider logging the result. Or something.
    return resultString.ToString();
    Ok. We've written some code. Let us test it.
    var runner = new PowershellRunner();
    runner.RunPowershellScript(@"
    $web = Get-SPWeb 'http://server/web' # or $webContext
    $web.Title = $param1
    $web.Update()
    $web.Dispose()
    ", null, "New title", "not used");
    -Sangeetha

  • I Got a new IPad Air and have problems running videos from the internet

    i'm having problem to run videos from internet news's site

    If you are running from Safari, it may be the site requires Flash player which most mobile devices don't have.
    Try downloading a mobile news app for your local network TV station.

  • Problems with switch from Windows to Mac

    I recently switched from Windows PC to a new Mac and cannot install the Acrobat 7.0 Professional CD that I used with Windows on the Mac. Am I missing something, or do I need to buy a whole new product?

    No Windows program will install on Macintosh (a very few products have
    both Windows and Macintosh on one disk, but not here).
    If you call Adobe you can buy a "crossgrade" for a reduced price. You
    will need to upgrade to Acrobat 9.0 at the same time.
    Aandi Inston

  • Office 2004 for Mac:: Problems Importing Data from Windows

    I'm not sure if this is the best place to post this but:
    I am switching from Windows and Outlook 2003 and trying to move my data from Outlook into Entourage. I was somewhat successful using O2M to import my Contacts and E-Mail.j However O2M created a bunch of .ics files that I can’t seem to get into Entourage’s calendar.
    I also have a lot of Outlook Notes and Tasks that I can’t seem to import or drag into Entourage’s Notes and Task windows.
    Any suggestions? I didn’t think it would be so hard. You would think that Microsoft as the vendor of both programs would have provided a smoother method of moving data between their programs.
    Thanks
    Ben

    Thanks for the response. I will check the site that you reference.
    Just out of curiousity--why is this not a good place to ask this question? As a new user to the Apple/Mac community am I relegated to asking questions only about Apple hardware and software written only by Apple? One of the enticements for switching over to Apple from Windows, besides getting tired of having to be a technical wizard, were all the platitudes about how easy it is to switch. Well it isn't all that easy.
    Don't get me wrong, I am loving my new MacBook Pro and I imagine once I get my Outlook data over to the Mac I will be really happy. But given that all my email, notes, tasks, calendar and contacts for years have been on my Windows machine I would have liked a little less hair pulling trying to get it over to my mac. It has not been clean and it hasn't been easy [over a week now].
    Somehow I thought "Well I'm probably not the first person to be taking this route and where would I find the largest number of people who may have already gone before me and could offer directions/suggestions." I did do my research and based on the number of postings concluded that Office2004 for Mac was the best choice if I was using Outlook on Windows and needed to continue to use Word/Excel/Powerpoint with the rest of the business world. And it did appear from all the postings that a lot of people use this package.
    Again, this is not meant to come off harsh, but it is a little off-putting to be told "This isn't the appropriate place for this question"
    Thanks
    Ben

  • Run Unix command from windows

    I would like to run a unix command and capture the output by running a java program on a windows 98 machine, this will be ran on a secure intranet. What is the best way to do that. If anyone knows of an example source code that would be great.
    thanks,
    Dean

    Try this. It always works for me.
    import java.io.*;
    public class Exec {
        private BufferedReader out;
        private Process p;
        public Exec(String cmd) throws IOException {
            p = Runtime.getRuntime().exec(cmd);
            out = new BufferedReader(new InputStreamReader(p.getInputStream()));
        public BufferedReader getBufferedReader() {
            return out;
        public void waitFor() throws InterruptedException {
            p.waitFor();
        public static void main(String [] args) throws IOException,
                InterruptedException {
            final Exec p = new Exec("your command goes here.");
            new Thread(new Runnable() {
                public void run() {
                    try {
                        String s = null;
                        while((s = p.getBufferedReader().readLine()) != null) {
                            System.out.println(s);
                    catch(IOException io){}
            }).start();
            p.waitFor();
    }

  • Samsung SSD causing problem with upgrade from Windows 8.0 to 8.1

    I'm having trouble upgrading my HP Desktop from the OEM installed Windows 8.0 to 8.1.  I first attempted the upgrade when 8.1 was first rolled out.  It seemed to upgrade okay, but after a reboot I was left with a black screen... no error messages, just a black screen.
    I retried it this morning, but this time it failed with DPC_Watchdog_Exception and then Machine_Check_Exception.  After searching through several forums, I'm "guessing" it may be Disk 0, which is a Samsung 830 Series SSD (Model: MZ7PC256/0H1, s/n: S0U3NSAC705912, p/n: MZ7PC256HAFU-000H1) that was installed and configured by HP when I ordered this desktop in 2012.
    Samsung's Magician software doesn't recognize this SDD as a supported product, but they do identify it as a Samsung MZ7PC256HAFU-000H1, with Firmware version CXM05H1Q.  I thought I'd see if a firmware upgrade was available, but there's no information about this SSD on Samsung's support site. Also, HP doesn't offer any firmware for this SSD... not even the original firmware.  Everything I've seen on the internet says it's a custom OEM SSD that's not supported by Samsung. 
    I'm not desparate to upgrade to Win8.1, but I would like to know exactly why the upgrade keeps failing.  I have another SSD available (a Samsung 850 Pro, model: MZ-7KE256BW) that I've considered using to replace the current Drive 0, but I hate swapping out parts without knowing it's actually the problem.
    I'm open to advice. The info on my current system follows. Also, I should point out that there are no device conflicts nor outdate drivers.
    HP Envy h8-1420t CTO Desktop PC, s/n: 2MD3020CF9, Product No. C1U69AV #ABA
    Windows 8 Pro 64 (installed by HP)
    Intel Core i7-3770 3rd Gen, Quad-core (Ivy Bridge) 64-bit Processor, 3.4GHz
    Memory: 16GB DDR3
    Drive 0: 256GB SSD, Samsung 830 Series, Model: MZ7PC256/0H1, s/n: S0U3NSAC705912, p/n: MZ7PC256HAFU-000H1
    Drive 1: 1TB 7200 rpm SATA hard drive, Model: WD10EZEK-60ZF5A0, s/n: WCC1S1261511
    Drive 2:  750GB SSD, Samsung 840 Series, Model: MZ-7TE750BW, s/n: S1DMNEADB03609
    This question was solved.
    View Solution.

    Hi,
    You will find the latest firmware for the Samsung 830 at the Samsung SSD download site.  Additionally, you will also find the latest version of the Samsung Magician.
    Backup your data and be sure to create the external HP recovery media.
    I prefer not to clone but rather to use the external HP recovery media to load the SSD.
    If you are not on the latest SSD firmware then flash the SSD.  Use the latest version of the Magician to do so.
    Disable Secure Boot in the BIOS before cloning the hard drive.
    Then reformat and clone the SSD using the latest Samsung migration software. Use the original HP hard drive as the source and it needs to be intact as you need to bring across all of the partitions.
    Power off the PC and disconnect the original boot HD.
    Connect the SSD to the original boot SATA port.
    Do not have any other SSDs or hard drives connected that contain an EFI partitions or you might run into issues with multiple Windows boot loders.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • Problem launching Firefox from Windows with file path that contains space characters in the html file's file name

    We have a software application that programmatically launches the default web browser using the Windows shell execute function ("ShellExecuteA" in the "shell32.dll" library of the Windows API) along with a file path for a saved local html file that is to be displayed. In the case that FireFox is the default browser and the file path for the html file contains any space characters in the html file's file name, Firefox (in this case v7.01) will display an error message "File not Found..." and then will also proceed to open tabs for each of the individual words in the file name, launching as the URL path, each individual word appended to ".com".
    In the following example, the path "C:\KSSecOfState\Forms\Kansas Secretary of State - Filings and Forms.htm" when launched programmatically, resulted in the error message "File not Found...Firefox can't find the file at /C:/KSSecOfState/Forms/Kansas." and opened up browser windows for "http://www.secretary.com/", "http://www.of.com/", "http://www.state.com/", "http://www.and.com/", and attempted to launch "http://forms.htm". If the same file (renamed) is launched using the path string "C:\KSSecOfState\Forms\KansasSecretaryOfState-FilingsAndForms.htm" the file opens up correctly in Firefox. Clearly the presence of spaces in the file name is causing the problem.
    I should also note that either path (with or without space characters) works properly if pasted directly into the Firefox URL path menu bar for a live instance of Firefox. The test path strings I used were:
    C:\KSSecOfState\Forms\KansasSecretaryOfState-FilingsAndForms.htm
    C:\KSSecOfState\Forms\Kansas Secretary of State - Filings and Forms.htm
    Does anyone know anything about this problem or how to work around it (other than the obvious answer of taking the spaces out of the file name which is not possible for this application). It seems the problem is specific to Firefox. IE works properly if launched programmatically with spaces in the file name passed to it. I haven't tested other browsers yet.
    Thanks!

    If starting from ShellExecute works the same as starting from the command line then there are two options:<br>
    Put everything inside double quotes<br>
    '''C:\Program Files\Mozilla Firefox\>'''firefox.exe '''"c:\test\svg test.htm"'''<br>
    Convert to a valid url with file:// protocol and percentage-escaping the space<br>
    '''C:\Program Files\Mozilla Firefox\>'''firefox.exe '''file://c:\test\svg%20test.htm'''<br>

Maybe you are looking for

  • W540 touchpad - erratic behavior in Windows 8.1

    This is not a rant about the touchpad design - I'm actually not too bothered by it. I'm having major issues using the touchpad even with the latest W540 drivers on Win 8.1. I have v18.0.7.57 which is the latest available as per Lenovo's downloads sit

  • How to include artworks and artist name onto download playlists to a usb key

    Hi! I used the "COPY/PASTE" function of WINDOWS to copy ITUNES PLAYLISTs onto a USB key to be used in my car.  All the songs play well and the display shows the titles.  However, the display does not show the ARTWORKS and artist name. Is there a way

  • How to silence the volume control

    I forgot which key you can hold down while changing the volume in the finder to silence the chirping sound. Anybody know?

  • How can I group volume more than 30 disk on 6540

    When I create RAID-1 profile and set number of disk to variable (Max 30 disk). Then create pool and found avaliable size only 1 TB. I need group all 94 disk drive (exclude 2 hot spare) for RAID 1+0. How can I expand number of disk.

  • Apple TV - pb when downloading a movie

    When I try to download a movie, I get this message (translated from french):"in order to secure your account, need more information". Then nothing happens, back to the movie page. Worked fine before. Tks for help.