Applies To Combo Box control, Table field.
Description
You can use the ListRows property to set the maximum number of rows to display in the list box portion of a combo box.
Setting
The ListRows property holds an integer that indicates the maximum number of rows to display. The default setting is 8. The setting for the ListRows property must be from 1 to 255.
You can set this property by using the combo box's property sheet, a macro, or Visual Basic. For table fields, you can set this property on the Lookup tab of the Field Properties section of table Design view for fields with the DisplayControl property set to Combo Box. Tip Microsoft Access sets the ListRows property automatically when you select Lookup Wizard as the data type for a field in table Design view. In Visual Basic, use a numeric expression to set the value of this property. You can set the default for this property by using a combo box's default control style or the DefaultControl method in Visual Basic. Remarks If the actual number of rows exceeds the number specified by the ListRows property setting, a vertical scroll bar appears in the list box portion of the combo box.See Also Height, Width properties, ListCount property, ListWidth property.
Example See the ListCount property example.