Hi, currently I have a batch file to launch a vb application, the app takes a couple parameters, so my batch file looks like the following...
@ECHO OFF
C:
CD\a directory
someapp.exe param1 "param 2"
My problem is, when the app finishes executing, a message box is displayed.
In vbscript isn't there a way to start an application with the getobject command? If so, can I pass it arguments?
My final question. Is there a way to depress the button on the vbapp with a seperate vbscript? Or is there a way to kill the app efficiently without leaving a memory leak?
Hope this makes sense. Thanks to anybody who replies.
@ECHO OFF
C:
CD\a directory
someapp.exe param1 "param 2"
My problem is, when the app finishes executing, a message box is displayed.
In vbscript isn't there a way to start an application with the getobject command? If so, can I pass it arguments?
My final question. Is there a way to depress the button on the vbapp with a seperate vbscript? Or is there a way to kill the app efficiently without leaving a memory leak?
Hope this makes sense. Thanks to anybody who replies.