koden
September 20th, 2005, 06:24 PM
I have a vbscript that currently writes output to a log. How do I have a window popup and have that output shown in a window as the script runs?
How do I do gui type things with vbscript?
Thanks!
retpyrc
October 5th, 2005, 10:47 AM
Hi Koden,
VBScript currently has only two GUI components, MsgBox and InputBox. To use these you must be running Windows VBScrip:
wscript.exe <name>.vbs
and not the Console version,
cscript.exe <name>.vbs
Both .exe can be found in your Windows\System32\ directory.
Try VBA, Perl or Java if you want an output window.
retpyrC