Like in javascript you do:
var whatever = prompt("text","default");
How can I do this in VBScript?
Printable View
Like in javascript you do:
var whatever = prompt("text","default");
How can I do this in VBScript?
try this pete:
Code:whatever = inputbox("Your Question")
More options:
Code:
whatever = InputBox("What you what to know", "Your Title", "This is the default option...")
K, thanks alot