I got a book on scripting and attempted to write somthing up that would wait a period of time and then execute LSCLIENT.
This is the script:
Option Explicit
Const TIME = 100 'In Miliseconds (1/1000 secounds)
Wscript.Sleep TIME
Set WshShell = CreateObject(WScript.Shell")
WshShell.run "//LSServer/lsclient/lsclient.exe LSServer"
I get an error on line 9, char 44. The error message is an Unterminated String Constant. I know its a very simple problem, but I have never worked with scripts before.
Thanks,
David