Mega Code Archive

 
Categories / VisualBasic Script / Language Basics
 

Get the return value from InputBox

Sub InputBoxDemo()     Dim myValue     myValue = InputBox("Please enter number of hours worked", "Hours Worked")         MsgBox myValue End Sub