تماشای ویدئو VBScript Basics Part 6 Input Box InputBox از آی-ویدئو

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
2 دی 1396
آی-ویدئو