Hi!
Does somebody knows how to pass an argument in a VB or VBS application from a shortcut command line?
Example:
Shortcut: C:\windows\script.vbs V00
How to get or use the V00 argument in the command line in the vbs script?
Thanks
Printable View
Hi!
Does somebody knows how to pass an argument in a VB or VBS application from a shortcut command line?
Example:
Shortcut: C:\windows\script.vbs V00
How to get or use the V00 argument in the command line in the vbs script?
Thanks
In vb, use the Command() function. it returns any passed args, or "" if none were passed. I don't know about vbs tho
Thanks moogle_cat!!! I'll try it!!