[Help]Starting a process[solved]
Hi guys. I need some help in starting a process...
I want to start a process with a parameter. but I didn't know what is the code to include...
A person just said this to me but I can't understand it...
Try concatenating all the SelectedPath, "/<process>", and the argument as one single string, and executing Shell with that string.
I usually had file error when I included full path to the file. I usually had to separate the file name and the full folder path, and include them in separate arguments.
what should be the vb Code for the parameter in order to launch the game???
I like to create a program for it so I want the codes for it....
I have tried this but it didn't work
Shell(FolderBrowserDialog1.SelectedPath + "/<process> <parameter>") Try
fbd = Folderbrowserdialog1.SelectedPath
Shell("""" & fbd & "\nameoffile.exe parameter""")
or else
Shell(fbd & "\nameoffile.exe parameter")