Click here to Skip to main content
15,926,035 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Dynamic Menus in a Child Window? Pin
RobJones17-Jan-03 14:32
RobJones17-Jan-03 14:32 
GeneralRe: Dynamic Menus in a Child Window? Pin
Dov Sherman17-Jan-03 16:22
Dov Sherman17-Jan-03 16:22 
AnswerRe: Dynamic Menus in a Child Window? Pin
Simon.W17-Jan-03 16:03
Simon.W17-Jan-03 16:03 
GeneralI need help with dialogs please Pin
toey17-Jan-03 11:58
toey17-Jan-03 11:58 
GeneralRe: I need help with dialogs please Pin
valikac17-Jan-03 13:21
valikac17-Jan-03 13:21 
GeneralRe: I need help with dialogs please Pin
toey17-Jan-03 14:38
toey17-Jan-03 14:38 
GeneralRe: I need help with dialogs please Pin
RobJones17-Jan-03 14:44
RobJones17-Jan-03 14:44 
GeneralRe: I need help with dialogs please Pin
RobJones17-Jan-03 15:00
RobJones17-Jan-03 15:00 
Heres another option.. Its not as good as the first one but its much easier...
In your OnOK dont close the dialog just HIDE it and show the second dialog box..

In your Second Dialogs INIT() do a..

// Kill the 1st dialog..
CWnd *pOtherWnd = CWnd::FindWindow(NULL, _T("Dialog 1 Title.."));
if (pOtherWnd)
pOtherWnd->PostMessage(WM_CLOSE);
GeneralRe: I need help with dialogs please Pin
toey17-Jan-03 19:14
toey17-Jan-03 19:14 
GeneralHttpSendRequest Pin
Paul M Watt17-Jan-03 11:51
mentorPaul M Watt17-Jan-03 11:51 
GeneralRe: HttpSendRequest Pin
Todd Smith17-Jan-03 13:54
Todd Smith17-Jan-03 13:54 
GeneralRe: HttpSendRequest Pin
Paul M Watt17-Jan-03 20:39
mentorPaul M Watt17-Jan-03 20:39 
GeneralRe: HttpSendRequest Pin
geo_m18-Jan-03 2:15
geo_m18-Jan-03 2:15 
GeneralPassing structs by pointer rather than reference Pin
Dean Goodman17-Jan-03 11:39
Dean Goodman17-Jan-03 11:39 
GeneralRe: Passing structs by pointer rather than reference Pin
Maximilien17-Jan-03 11:46
Maximilien17-Jan-03 11:46 
GeneralRe: Passing structs by pointer rather than reference Pin
Jörgen Sigvardsson17-Jan-03 12:10
Jörgen Sigvardsson17-Jan-03 12:10 
GeneralRe: Passing structs by pointer rather than reference Pin
Maximilien17-Jan-03 12:59
Maximilien17-Jan-03 12:59 
GeneralRe: Passing structs by pointer rather than reference Pin
Jörgen Sigvardsson17-Jan-03 14:34
Jörgen Sigvardsson17-Jan-03 14:34 
GeneralRe: Passing structs by pointer rather than reference Pin
Jörgen Sigvardsson17-Jan-03 15:05
Jörgen Sigvardsson17-Jan-03 15:05 
GeneralRe: Passing structs by pointer rather than reference Pin
Tim Smith17-Jan-03 12:59
Tim Smith17-Jan-03 12:59 
GeneralRe: Passing structs by pointer rather than reference Pin
Jörgen Sigvardsson17-Jan-03 14:46
Jörgen Sigvardsson17-Jan-03 14:46 
GeneralRe: Passing structs by pointer rather than reference Pin
Gary R. Wheeler18-Jan-03 14:18
Gary R. Wheeler18-Jan-03 14:18 
GeneralRe: Passing structs by pointer rather than reference Pin
Jörgen Sigvardsson18-Jan-03 14:39
Jörgen Sigvardsson18-Jan-03 14:39 
GeneralRe: Passing structs by pointer rather than reference Pin
Tim Smith17-Jan-03 13:02
Tim Smith17-Jan-03 13:02 
GeneralRe: Passing structs by pointer rather than reference Pin
Dean Goodman17-Jan-03 13:11
Dean Goodman17-Jan-03 13:11 

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.