i declared a control in a dialog's resource file (through Visual Studio's Resource editor) :
CONTROL "",IDC_COMBOBOXEX3,"ComboBoxEx32",CBS_DROPDOWNLIST | CBS_SORT | WS_VSCROLL | WS_TABSTOP,80,42,129,30
Compilation goes well, but the dialog isn't working. if i ignore this control
(use "//" in the start line), the dialog launches ok.
i think it's something related to "ComboBoxEx32". Can u c the problem ?
Isx,
try this one:
COMBOBOX IDC_COMBOBOXEX3, 80,42,129,30,
hth
vesa
It works. thx.