Click here to Skip to main content
15,929,253 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Enter a Word Pin
Mazdak23-Mar-02 18:50
Mazdak23-Mar-02 18:50 
GeneralRe: Enter a Word Pin
Nish Nishant23-Mar-02 18:54
sitebuilderNish Nishant23-Mar-02 18:54 
Generalicons Pin
23-Mar-02 16:09
suss23-Mar-02 16:09 
GeneralRe: icons Pin
Michael Dunn23-Mar-02 16:19
sitebuilderMichael Dunn23-Mar-02 16:19 
GeneralRe: icons Pin
Jack Handy23-Mar-02 16:48
Jack Handy23-Mar-02 16:48 
GeneralRe: icons Pin
Michael Dunn23-Mar-02 16:59
sitebuilderMichael Dunn23-Mar-02 16:59 
GeneralDialog boxes Pin
joeperris23-Mar-02 15:52
joeperris23-Mar-02 15:52 
GeneralRe: Dialog boxes Pin
Paul M Watt23-Mar-02 15:58
mentorPaul M Watt23-Mar-02 15:58 
Currently your second dialog is a modal dialog, you will need to change it to a modeless dialog.

A modal dialog retains the focus until you explicity close it. If you are using the windows SDK then you call one of the variations of DialogBox in order to create this type of dialog. If you are using MFC then you call DoModal. When you want this type of dialog to go away you should call EndDialog.

A Modeless dialog does not require closing before switching to another window. If you are using the SDK, then you will call one of the variations of CreateDialog and then follow that with a call to ShowWindow to make it visible. The MFC way is similar in the fact that you will want to create the dialog window, probably the same way that you created the Modal dialog, however you will use the ShowWindow to make the dialog visible. When you want this type of diaog to go away, you can either call ShowWindow to hide it, or when you are done with it you can call DestroyWindow.
GeneralRe: Dialog boxes Pin
joeperris23-Mar-02 15:57
joeperris23-Mar-02 15:57 
GeneralRe: Dialog boxes Pin
Nish Nishant23-Mar-02 17:49
sitebuilderNish Nishant23-Mar-02 17:49 
GeneralRe: Dialog boxes Pin
Florin Vasilescu24-Mar-02 23:43
Florin Vasilescu24-Mar-02 23:43 
GeneralThread suspend and timer Pin
23-Mar-02 15:48
suss23-Mar-02 15:48 
GeneralRe: Thread suspend and timer Pin
Paul M Watt23-Mar-02 16:04
mentorPaul M Watt23-Mar-02 16:04 
GeneralRe: Thread suspend and timer Pin
23-Mar-02 16:25
suss23-Mar-02 16:25 
GeneralRe: Thread suspend and timer Pin
23-Mar-02 16:25
suss23-Mar-02 16:25 
GeneralRe: Thread suspend and timer Pin
Tim Smith23-Mar-02 17:13
Tim Smith23-Mar-02 17:13 
GeneralRe: Thread suspend and timer Pin
Paul M Watt23-Mar-02 17:27
mentorPaul M Watt23-Mar-02 17:27 
GeneralVC++.NET OLE DB - How to Save Problems Pin
23-Mar-02 13:56
suss23-Mar-02 13:56 
GeneralHelp getting VCF to compile on VC7 Pin
Jim Crafton23-Mar-02 12:56
Jim Crafton23-Mar-02 12:56 
GeneralChange Menu Pin
joeperris23-Mar-02 10:45
joeperris23-Mar-02 10:45 
GeneralRe: Change Menu Pin
Paul M Watt23-Mar-02 11:18
mentorPaul M Watt23-Mar-02 11:18 
Generaltimer question repost. Pin
23-Mar-02 10:01
suss23-Mar-02 10:01 
GeneralRe: timer question repost. Pin
Paul M Watt23-Mar-02 10:31
mentorPaul M Watt23-Mar-02 10:31 
GeneralThank you so much...... Pin
23-Mar-02 10:56
suss23-Mar-02 10:56 
GeneralRe: timer question repost. Pin
Christopher Duncan24-Mar-02 14:15
Christopher Duncan24-Mar-02 14:15 

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.