Quote Originally Posted by xeroized View Post
Since the program will be running on multiple users computers that won't necessarily have CD-ROM / DVD Drives and may be running the setup from a USB drive, I can't just hard code the starting executable.

Thanks for any help!
Hi, Xeroized, you might like to try: -
vb.net Code:
  1. Dim filePath As String = IO.Path.Combine(Application.StartupPath, fileName)
Where fileName is your Application's Name. (Either in quotes, or in a pre-defined string variable).


Poppa.