Is there a list view in the Dialog?
I am just working with the .rc file and I see that I am able to create a combo box:
BEGIN
EDITTEXT 4, 6, 16, 92, 12, ES_AUTOHSCROLL | ES_OEMCONVERT
COMBOBOX IDC_MYCOMBO, 200, 205, 35, 30, CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
LTEXT "My Combos:", IDC_STATIC, 165, 208, 30, 8
DEFPUSHBUTTON "OK", 1, 104, 6, 50, 14, WS_GROUP
PUSHBUTTON "Cancel", 2, 104, 24, 50, 14, WS_GROUP
END
Just wondering if there is any way to include a list view window? I am trying to display hundreds of elements and I just think the combo box is useless.
Also, IF* there is no other way to display elements how exactly does the Combo box work, and do you have any resources on how to pick it up quickly?