Echo lines of text to the screen (Stdout)
Syntax
WScript.StdOut.Write("text string to display")
WScript.StdOut.Write(strMyTextVariable)
Examples
WScript.StdOut.Write("Enter the price...")
Input Function
You can also achieve similar functionality with
the VBScript function Msgbox()
MsgBox(prompt[, buttons][, title][, helpfile, context])
Displays a message in a dialog box, waits for the user to
click a button, and returns a value indicating which button the user clicked.
Related commands:
Echo - Wscript.Echo
Echo, popup - WshShell.Popup
Equivalent Windows NT command:
ECHO - Display message on screen
|
|