CWinApp::ParseCommandLine in VC++ allow us to get parameters from command line.
Is there anything like that in VB?
Thks!
Printable View
CWinApp::ParseCommandLine in VC++ allow us to get parameters from command line.
Is there anything like that in VB?
Thks!
Command$ variable returns the command line.
Use the split function to split that into an array of strings.
Thanks!It works in Dos prompt! Would it work if I use CreateProcess?