home *** CD-ROM | disk | FTP | other *** search
- Set WShell = Wscript.CreateObject("Wscript.Shell")
- Reply = WShell.Popup("Display long file names?", 10, _
- "Timed Dialog Box", 4+64)
- If Reply = 6 Then
- Wscript.Echo "OK, here are a few long file names..."
- Else
- If Reply = 7 Then
- Wscript.Echo "OK, here are a few short file names..."
- Else
- Wscript.Echo "I selected long file names for you"
- End If
- End If
-