home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / ch_code / ch20 / scripts / args1.vbs next >
Encoding:
Text File  |  1998-05-12  |  109 b   |  6 lines

  1. Set Args = Wscript.Arguments
  2. For i=0 to Args.Count - 1
  3.     txt = txt & Args(i) & vbCrLf
  4. Next
  5. MsgBox txt
  6.