-
Ok, I got a program that I want to be executed from another program via the shell command. This program has a switch (is that the word? It's been awhile since i used them.) at a dos prompt one must type...
D:\call wav\myProgram.exe - run ...to get the prgram to run. but it wont work as a shell command suchas...
IAM = Shell("D:\call wav\IAMSETUP.EXE" - run, 1) ...What to do?
-
Try these;
IAM = Shell("D:\call wav\IAMSETUP.EXE" "- run", 1)
or
IAM = Shell("D:\call wav\IAMSETUP.EXE - run", 1)
I think one will work.
------------------
Mark "Buzby" Beeton
VB Developer
[email protected]