Note that if you have any backslash \ characters in a string you'll need to put in 2 of them like: 'c:\\path\\program.exe' .
That's because the backslash is an escape character for Javascript code, like \n is the escape code for making a newline character. To do a backslash in a string you need \\ .
- Michael
|