Click here to Skip to main content
15,914,221 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: how to create a pop up menu Pin
kfaday3-Jun-04 6:34
kfaday3-Jun-04 6:34 
Generalreaching other classes Pin
deniz79s2-Jun-04 7:07
deniz79s2-Jun-04 7:07 
GeneralRe: reaching other classes Pin
David Crow2-Jun-04 7:54
David Crow2-Jun-04 7:54 
GeneralGDI+ and ::InvertRect Pin
zhuyie_cn2-Jun-04 6:54
zhuyie_cn2-Jun-04 6:54 
QuestionHow can I add an icon in MS Outlook for a contact ? Pin
Istvan Kozma2-Jun-04 6:09
Istvan Kozma2-Jun-04 6:09 
AnswerRe: How can I add an icon in MS Outlook for a contact ? Pin
toroso732-Jun-04 9:20
toroso732-Jun-04 9:20 
Generaltab control question Pin
blurblur2-Jun-04 5:53
blurblur2-Jun-04 5:53 
GeneralRe: tab control question Pin
Edwin Brunner2-Jun-04 7:30
Edwin Brunner2-Jun-04 7:30 
Well, I think you have for each tab a dialog and only one of them at a time is visible.

Normally, dialogs have an "OK" and a "Cancel" button. If you only delete them, the functionality still is in the dialog and "Enter" or "Esc" will close your dialog.

To avoid this, you should override (implement) the "OnOK" and "OnCancel" functions, but without calling its parent functions.

void CMySubDialog1::OnOK()
{
//CDialog::OnOK();
}

void CMySubDialog1::OnCancel()
{
//CDialog::OnCancel();
}

This should solve your problem.
GeneralRe: tab control question Pin
David Crow2-Jun-04 7:30
David Crow2-Jun-04 7:30 
GeneralVersion number in comment Pin
Robert Pickford2-Jun-04 5:53
Robert Pickford2-Jun-04 5:53 
GeneralRe: Version number in comment Pin
David Crow2-Jun-04 7:28
David Crow2-Jun-04 7:28 
GeneralRe: Version number in comment Pin
Robert Pickford2-Jun-04 22:17
Robert Pickford2-Jun-04 22:17 
GeneralRe: Version number in comment Pin
David Crow3-Jun-04 2:50
David Crow3-Jun-04 2:50 
GeneralRe: Version number in comment Pin
Robert Pickford3-Jun-04 6:12
Robert Pickford3-Jun-04 6:12 
GeneralRe: Version number in comment Pin
Henry miller3-Jun-04 3:23
Henry miller3-Jun-04 3:23 
GeneralModeless Dialogs Overlapping Formviews Pin
YooVeeAy2-Jun-04 5:37
YooVeeAy2-Jun-04 5:37 
GeneralMFC and other EXE's problem Pin
mpgodknecht2-Jun-04 5:34
sussmpgodknecht2-Jun-04 5:34 
GeneralRe: MFC and other EXE's problem Pin
Antony M Kancidrowski2-Jun-04 6:16
Antony M Kancidrowski2-Jun-04 6:16 
GeneralNo WM_NOTIFY messages Pin
Aviv Halperin2-Jun-04 5:24
Aviv Halperin2-Jun-04 5:24 
GeneralAccessing a remote computer from inside a service Pin
stupidflasucks2-Jun-04 5:22
stupidflasucks2-Jun-04 5:22 
GeneralTTN_NEEDTEXT never called Pin
Aviv Halperin2-Jun-04 5:05
Aviv Halperin2-Jun-04 5:05 
GeneralRe: TTN_NEEDTEXT never called Pin
David Crow2-Jun-04 5:26
David Crow2-Jun-04 5:26 
GeneralRe: TTN_NEEDTEXT never called Pin
Aviv Halperin2-Jun-04 5:56
Aviv Halperin2-Jun-04 5:56 
GeneralRe: TTN_NEEDTEXT never called Pin
David Crow2-Jun-04 7:26
David Crow2-Jun-04 7:26 
GeneralRe: TTN_NEEDTEXT never called Pin
Aviv Halperin2-Jun-04 8:09
Aviv Halperin2-Jun-04 8:09 

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.