Apr 28, 2003 #1 biscuit1 Programmer Apr 4, 2002 15 US Is there a VBScript function that will select a value from a given list of arguments?
Apr 28, 2003 #2 mrmovie Technical User Oct 2, 2002 3,094 GB Do you mean the arguments when the script is called??? ie c:\test.vbs hello world Set objArgs = WScript.Arguments For i = 0 To UBound(objArgs) Msgbox objArgs(i) Next Upvote 0 Downvote
Do you mean the arguments when the script is called??? ie c:\test.vbs hello world Set objArgs = WScript.Arguments For i = 0 To UBound(objArgs) Msgbox objArgs(i) Next