Determining the selected item : ListBox « Forms « 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 » Forms » ListBox 
Determining the selected item
 
  Private Sub OKButton_Click()
      Dim Msg As String
      Msg = "You selected item # "
      Msg = Msg & ListBox1.ListIndex
      Msg = Msg & vbNewLine
      Msg = Msg & ListBox1.Value
      MsgBox Msg
      Unload UserForm1
  End Sub

 
Related examples in the same category
1.Add item to List Box
2.Add names of all open workbooks to the list box
3.Add items to ListBox
4.Assign the data in a worksheet to RowSource of a ListBox
5.Make sure the RowSource property is empty
6.Select the items programmatically
7.Get all selected items in a list box
8.Evaluating Which Items Are Selected in the Multiselect List Box
9.Get selected from ListBox
10.Get the selected items in a ListBox
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.