The InputBox function displays a dialog box containing a simple text box : InputBox « Language Basics « VBA / Excel / Access / Word

Home
VBA / Excel / Access / Word
1.Access
2.Application
3.Data Type
4.Data Type Functions
5.Date Functions
6.Excel
7.File Path
8.Forms
9.Language Basics
10.Math Functions
11.Outlook
12.PowerPoint
13.String Functions
14.Windows API
15.Word
16.XML
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
VBA / Excel / Access / Word » Language Basics » InputBox 
The InputBox function displays a dialog box containing a simple text box
 
Sub InputBoxExample()
   Dim strName As String
   strName = InputBox("What is Your Name?""This is the Title""This is the Default")
   msgBox "You Entered " & strName
End Sub

 
Related examples in the same category
1.Using the InputBox Function: InputBox(prompt [, title] [, default] [, xpos] [, ypos] [, helpfile, context])
2.Get the return value from InputBox
3.Return a number from InputBox
4.Read data from dialog box and fill it into the cell
5.Read password from InputBox
6.Validation with the InputBox() Function
7.How to handle error caused by value from InputBox
8.Use InputBox to read value for an array
9.Reference InputBox from Application
10.It is a good idea to include the title and default arguments to provide the user with a little help in knowing what to enter.
11.Checks for the Cancel button clicks and takes no action.
12.Use If and IsNumeric function to check user input
13.Validate the user's entry.
14.Provide help file for InputBox
15.To retrieve input from an input box, declare the numeric variable or String variable that will contain it
16.To make sure that the user has chosen the OK button, check that the input box hasn't returned a zero-length string
17.Combine InputBox and Do Loop to read user input
18.Use parameter name in InputBox function
19.Get the Password
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.