Hi George,
You would probably be better using wscript's shell method through vbscript for this. Here's an example of how to run notepad:
<script language = "vbscript">
sub nPad()
dim progName
progName = "c:\winnt\system32\notepad.exe"
set oShell = createobject("wscript.shell") 'create a shell
'***use the line below to call your app, defined above with the "progName" variable:
oShell.run(progName)
end sub
</script>
This example should get you started.
HTH
Cheers!
Joe
'sync' <cr>
The name specified is not recognized as an internal or external command, operable program or batch file.
|