ComboBox.Selected property (Access)
Use the Selected property in Visual Basic to determine if an item in a combo box is selected. Read/write Long.
Syntax
expression.Selected (lRow)
expression A variable that represents a ComboBox object.
Parameters
Name | Required/Optional | Data type | Description |
---|---|---|---|
lRow | Required | Long | The item in the combo box. The first item is represented by a zero (0), the second by a one (1), and so on. |
Remarks
The Selected property is a zero-based array that contains the selected state of each item in a combo box.
Setting | Description |
---|---|
True | The combo box item is selected. |
False | The combo box item is not selected. |
This property is available only at run time.
Use the Selected property to select items in a combo box by using Visual Basic. For example, the following expression selects the fifth item in the list.
Me!Combobox.Selected(4) = True
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.