|
|
Title | Programmatically expand a ComboBox in Visual Basic 2005 |
Description | This example shows how to programmatically expand a ComboBox in Visual Basic 2005. |
Keywords | ComboBox, expand, VB.NET, Visual Basic 2005 |
Categories | Controls |
|
|
To expand the ComboBox, the code simply sets its DroppedDown property to True.
|
|
cboChoices.DroppedDown = True
|
|
|
|
|
|