Advertisement

Windows Controls

Started by September 13, 2000 08:39 AM
2 comments, last by LowRad 24 years, 3 months ago
Hi All, I had do a little dialog box with combobox (droplist). But, in MSVC, when i it CTRL-T, i can select the api and resolution. But when i call it within my program, all the items of those droplist are not there anymore.... Did someone have an idea, why they disapper when my programm call this dialogbox Thanks, LowRad Happy Coding
I think a little more information would help me receive a answer to my question...

so, I''ve build a DialogBox to do the Configuration of my 3D Engine. On that DialogBox i have 2 ComboBox (DropList) which contain Supported Resolution and Api.

When i test this Dialog Box in MSVC, i can see all the available api & resolution. But, when it''s came to use it when i lauch my 3d engine, the Dialog Box appear, but all Api & Resolution are gone....

Did someone have a clue for me ...

Thanks,
LowRad


Happy Coding
Advertisement
Please Answer ... ;/

I''m at work, it''s lunch time, and i would like to correct this before i''m getting home ...


Thanks
LowRad
Sorry, but these strings only show up in your editor
You have to load strings into your comboboxes manually.

    SendDlgItemMessage(hDlg, IDC_COMBO, CB_ADDSTRING, 0, "Data");    


Should do the trick.

This topic is closed to new replies.

Advertisement