[RESOLVED] launching a program
i want to be able have my program launch another program. However this program will obviously be installed in different places on different computers. So i want to be able have the user set the address to the program, so when the launch button is pressed in my program, my program opens the other program.
Re: [RESOLVED] launching a program
Weird as the semi colin fixes it for me. The semicolon designates that there will be no new line added after the print statement.
VB Code:
Open "C:\DeleteMe\Test2.txt" For Output As #1
Print #1, "Test";
Close #1
Produced a single line text file with no next blank line.