Click here to Skip to main content
15,902,114 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: how to read binary data from socket using recv() Pin
Mark Salsbery1-Oct-08 6:17
Mark Salsbery1-Oct-08 6:17 
QuestionTask Scheduler Pin
brucewayn1-Oct-08 1:05
brucewayn1-Oct-08 1:05 
AnswerRe: Task Scheduler [modified] Pin
_AnsHUMAN_ 1-Oct-08 1:19
_AnsHUMAN_ 1-Oct-08 1:19 
Questionpoi command in debugger Pin
George_George1-Oct-08 0:55
George_George1-Oct-08 0:55 
QuestionDebug Assertion Failure Pin
bhanu_850930-Sep-08 23:55
bhanu_850930-Sep-08 23:55 
AnswerRe: Debug Assertion Failure Pin
Roger Stoltz1-Oct-08 0:27
Roger Stoltz1-Oct-08 0:27 
GeneralRe: Debug Assertion Failure Pin
bhanu_85092-Oct-08 21:17
bhanu_85092-Oct-08 21:17 
AnswerRe: Debug Assertion Failure Pin
Roger Stoltz2-Oct-08 21:50
Roger Stoltz2-Oct-08 21:50 
bhanu_8509 wrote:
how to access object scope from one dialog to another dialog.How to call dialogs without using DoModal()


You have to re-evaluate your design.
An application is supposed to have one main window that persists the entire life time of the application. What you're trying to do is change which window is the main window during execution and that suggests a design flaw.

I suggest you consider one of the following:
  1. Create an SDI application and select the CFormView class as view class.
    You can create multiple CFormView derivatives and change between them with F3/F4 buttons, but the CMainFrame window object remains the main window of the application.
    How to change between the views can be found by searching this site.
  2. Continue to use a dialog based application, but create a tab control inside it.
    The tab control can show different child dialogs and you can change between them using F3/F4 as you like.



"It's supposed to be hard, otherwise anybody could do it!" - selfquote
"High speed never compensates for wrong direction!" - unknown


GeneralRe: Debug Assertion Failure Pin
bhanu_85094-Oct-08 0:04
bhanu_85094-Oct-08 0:04 
QuestionRun-Time Check Failure Pin
George_George30-Sep-08 23:51
George_George30-Sep-08 23:51 
AnswerRe: Run-Time Check Failure Pin
Naveen30-Sep-08 23:59
Naveen30-Sep-08 23:59 
GeneralRe: Run-Time Check Failure Pin
George_George1-Oct-08 0:21
George_George1-Oct-08 0:21 
GeneralRe: Run-Time Check Failure Pin
toxcct1-Oct-08 0:32
toxcct1-Oct-08 0:32 
GeneralRe: Run-Time Check Failure Pin
George_George1-Oct-08 0:34
George_George1-Oct-08 0:34 
GeneralRe: Run-Time Check Failure Pin
toxcct1-Oct-08 1:14
toxcct1-Oct-08 1:14 
GeneralRe: Run-Time Check Failure Pin
George_George3-Oct-08 0:14
George_George3-Oct-08 0:14 
GeneralRe: Run-Time Check Failure Pin
toxcct3-Oct-08 0:22
toxcct3-Oct-08 0:22 
GeneralRe: Run-Time Check Failure Pin
George_George3-Oct-08 0:37
George_George3-Oct-08 0:37 
AnswerRe: Run-Time Check Failure Pin
Cedric Moonen1-Oct-08 0:17
Cedric Moonen1-Oct-08 0:17 
GeneralRe: Run-Time Check Failure Pin
George_George1-Oct-08 0:23
George_George1-Oct-08 0:23 
GeneralRe: Run-Time Check Failure Pin
Cedric Moonen1-Oct-08 0:53
Cedric Moonen1-Oct-08 0:53 
GeneralRe: Run-Time Check Failure Pin
George_George1-Oct-08 1:01
George_George1-Oct-08 1:01 
GeneralRe: Run-Time Check Failure Pin
Cedric Moonen1-Oct-08 1:12
Cedric Moonen1-Oct-08 1:12 
GeneralRe: Run-Time Check Failure Pin
George_George3-Oct-08 0:12
George_George3-Oct-08 0:12 
GeneralRe: Run-Time Check Failure Pin
Cedric Moonen3-Oct-08 1:42
Cedric Moonen3-Oct-08 1:42 

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.