PDA

Click to See Complete Forum and Search --> : Reading Command Line Parameters


Sandip54
Jan 12th, 2000, 01:21 AM
Hey I know this has been asked in a few ways, but I'm not sure I understand the answer. I'm trying to write a wrapper that is a command line executable. It needs to read in 7 Strings as parameters. I'm not using any GUI interfaces. How would I do this? An example would really help. Thanks.

netSurfer
Jan 12th, 2000, 01:40 AM
dim strCmdArgs as string
strCmdArgs = Command

That will take all the elements of the command line and put them into the string. Then you can seperate the string into the 7 arguements you want.