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

  1. Set Args = Wscript.Arguments
  2. For Each arg In Args
  3.     txt = txt & arg & vbCrLf
  4. Next
  5. MsgBox txt 
  6.