PDA

Click to See Complete Forum and Search --> : How do I do a prompt in VBScript?


Wynd
Feb 4th, 2001, 05:38 PM
Like in javascript you do:

var whatever = prompt("text","default");

How can I do this in VBScript?

sail3005
Feb 4th, 2001, 06:44 PM
try this pete:



whatever = inputbox("Your Question")

sail3005
Feb 4th, 2001, 06:49 PM
More options:



whatever = InputBox("What you what to know", "Your Title", "This is the default option...")

Wynd
Feb 4th, 2001, 06:56 PM
K, thanks alot