OWLNext    7.0
Borland's Object Windows Library for the modern age
Loading...
Searching...
No Matches
Modifying Combo Boxes

TComboBox defines several member functions for modifying a combo box's list and edit areas.

Because TComboBox is derived from TListBox, you can also use TListBox member functions to manipulate a combo box's list area.

The following table summarizes these TComboBox member functions:

Member functionDescription
TComboBox::SetTextReplace all text in the edit area.
TComboBox::SetEditSelSelect text in the edit area.
TComboBox::ClearDelete all text in the edit area.
TComboBox::ShowList or TComboBox::ShowList(true)Show the list area.
TComboBox::HideList or TComboBox::ShowList(false)Hide the list area.
TComboBox::SetExtendedUISet the extended combo box UI.

See Also