VBScripting (.vbs) Basic tutorial on how to create and use an InputBox. This can be used as a way to let your users communicate with your code, via passwords, personal information, or wordy responses.
Code Example:
______________________________________________________
Option Explicit
Dim name
name = InputBox("What is your age?" , "Information:")
If IsNumeric(name) And name="15" then
msgbox "correct"
ElseIf name = "" Then
MsgBox "please do not leav
آی-ویدئو