CListBox::CListBox

CListBox();

Remarks

You construct a CListBox object in two steps. First call the constructor CListBox, then call Create, which initializes the Windows list box and attaches it to the CListBox.

Example

// Declare a local CListBox object.
CListBox myListBox;

// Declare a dynamic CListBox object.
CListBox* pmyListBox = new CListBox;

CListBox OverviewClass MembersHierarchy Chart

See Also   CListBox::Create