Click here to Skip to main content
16,016,643 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: ReleaseDC is not working Pin
MaTrIX2k25-May-02 9:59
MaTrIX2k25-May-02 9:59 
GeneralRe: ReleaseDC is not working Pin
Paul M Watt5-May-02 19:54
mentorPaul M Watt5-May-02 19:54 
GeneralRe: ReleaseDC is not working Pin
Paul M Watt5-May-02 9:36
mentorPaul M Watt5-May-02 9:36 
GeneralRe: ReleaseDC is not working Pin
MaTrIX2k25-May-02 11:09
MaTrIX2k25-May-02 11:09 
GeneralRe: ReleaseDC is not working Pin
Paul M Watt5-May-02 19:56
mentorPaul M Watt5-May-02 19:56 
QuestionHow do you add items to a combobox? Pin
5-May-02 7:00
suss5-May-02 7:00 
AnswerRe: How do you add items to a combobox? Pin
Tom Archer5-May-02 7:32
Tom Archer5-May-02 7:32 
GeneralRe: How do you add items to a combobox? Pin
5-May-02 7:43
suss5-May-02 7:43 
I don't use all that MFC stuff. Do you know how to do it without MFC? here's what i do:


HWND DlgItems[6];

DlgItems[5] = GetDlgItem(hWnd, IDC_GENRES);


and then initialize the strings like this (up to number 147)

char gszGenres[148][23];

strcpy(gszGenres[0], "Blues");
strcpy(gszGenres[1], "Classic Rock");
strcpy(gszGenres[2], "Country");
strcpy(gszGenres[3], "Dance");

... etc.

and then add them like a wrote before...
GeneralRe: How do you add items to a combobox? Pin
Tom Archer5-May-02 8:00
Tom Archer5-May-02 8:00 
GeneralRe: How do you add items to a combobox? Pin
5-May-02 8:07
suss5-May-02 8:07 
GeneralRe: How do you add items to a combobox? Pin
Tom Archer5-May-02 8:15
Tom Archer5-May-02 8:15 
GeneralRe: How do you add items to a combobox? Pin
5-May-02 8:32
suss5-May-02 8:32 
GeneralStrange... Pin
5-May-02 8:38
suss5-May-02 8:38 
GeneralEven more strange... Pin
5-May-02 8:44
suss5-May-02 8:44 
GeneralAnd... Pin
5-May-02 8:50
suss5-May-02 8:50 
GeneralRe: Strange... Pin
Tom Archer5-May-02 8:45
Tom Archer5-May-02 8:45 
GeneralRe: Strange... Pin
5-May-02 9:14
suss5-May-02 9:14 
GeneralRe: Strange... Pin
Tom Archer5-May-02 9:38
Tom Archer5-May-02 9:38 
GeneralRe: How do you add items to a combobox? Pin
Nish Nishant5-May-02 9:26
sitebuilderNish Nishant5-May-02 9:26 
GeneralRe: How do you add items to a combobox? Pin
Tom Archer5-May-02 9:42
Tom Archer5-May-02 9:42 
GeneralRe: How do you add items to a combobox? Pin
Nish Nishant5-May-02 9:56
sitebuilderNish Nishant5-May-02 9:56 
GeneralRe: How do you add items to a combobox? Pin
Ravi Bhavnani6-May-02 14:30
professionalRavi Bhavnani6-May-02 14:30 
AnswerRe: How do you add items to a combobox? Pin
Shog95-May-02 7:42
sitebuilderShog95-May-02 7:42 
GeneralChange screen resolution...! Pin
BlackSmith5-May-02 5:57
BlackSmith5-May-02 5:57 
GeneralRe: Change screen resolution...! Pin
Nish Nishant5-May-02 9:29
sitebuilderNish Nishant5-May-02 9:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.