Cmd Line arguments
Hi there,
Is there a way to access commandline parameters from VB ?
THanks
Taresh
[103 byte] By [
Taresh] at [2007-11-15 18:34:18]

# 1 Re: Cmd Line arguments
Dim arr as variant, cmdLine as string
cmdLine =Command()
arr=split(cmdLine," ")
'This returns an array arr that holds the command line parameters.
Help us improve our answers by rating them.
MKSa at 2007-11-10 0:33:46 >
