-
Atleast I hope it is my last.
SO CLOSE!!
I am so close to getting my program to work, the only problem is that when I run the program it is supposed to look for a file in a folder that I designate. I Used the Shell Command to tell it to open like this:
Shell "C:\folder1\folder2\" & FileName & ".exe"
However, for some reason DOS Prompt loads (like it should) up and gives an error saying something like:
Cannot find file in "C:\Program File\Microsoft Visual Studio\vb98\C:\folder1\folder2\fileName.exe"
Is there any way to make it NOT look in the MSVS folder?
Thanks again, soon all my questions will be answered
-
Try changing the default directory:
ChDir "C:\"
Shell "C:\Folder1\Folder2\" + Filename + ".exe"
That might do the trick.
-Zero the Inestimable