Click here to Skip to main content
15,922,894 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Answering machine, Where to start? Pin
vikas amin20-Oct-05 20:42
vikas amin20-Oct-05 20:42 
QuestionDebug Assertion Failure wincore.cpp Pin
SublimeRide20-Oct-05 10:12
SublimeRide20-Oct-05 10:12 
AnswerRe: Debug Assertion Failure wincore.cpp Pin
David Crow20-Oct-05 10:15
David Crow20-Oct-05 10:15 
GeneralRe: Debug Assertion Failure wincore.cpp Pin
Anonymous20-Oct-05 11:00
Anonymous20-Oct-05 11:00 
AnswerRe: Debug Assertion Failure wincore.cpp Pin
Christian Graus20-Oct-05 11:59
protectorChristian Graus20-Oct-05 11:59 
AnswerRe: Debug Assertion Failure wincore.cpp Pin
John M. Drescher20-Oct-05 14:37
John M. Drescher20-Oct-05 14:37 
GeneralRe: Debug Assertion Failure wincore.cpp Pin
SublimeRide26-Oct-05 9:09
SublimeRide26-Oct-05 9:09 
GeneralRe: Debug Assertion Failure wincore.cpp Pin
John M. Drescher26-Oct-05 10:11
John M. Drescher26-Oct-05 10:11 
Are you creating the dialog in a thread that is not the main application thead? If so you will have a lot of problems with MFC. The doc view arcitecture stores its tracking information for windows and views using thread local storage as a result things views and windows must be created only in thet main application thread if they are to have any interaction with each other (even a parent window counts). As a result of all these problems I write my multithreased apps so that the gui is completly handled in the main application thread and I create a thread pool to run my background operations. I use the thread pool class from this site that uses functors operator() as the jobs.

John
GeneralRe: Debug Assertion Failure wincore.cpp Pin
SublimeRide27-Oct-05 15:12
SublimeRide27-Oct-05 15:12 
GeneralRe: Debug Assertion Failure wincore.cpp Pin
John M. Drescher28-Oct-05 3:27
John M. Drescher28-Oct-05 3:27 
GeneralRe: Debug Assertion Failure wincore.cpp Pin
SublimeRide28-Oct-05 20:23
SublimeRide28-Oct-05 20:23 
AnswerUPDATE! Re: Debug Assertion Failure wincore.cpp Pin
SublimeRide25-Oct-05 13:41
SublimeRide25-Oct-05 13:41 
GeneralRe: UPDATE! Re: Debug Assertion Failure wincore.cpp Pin
David Crow26-Oct-05 2:55
David Crow26-Oct-05 2:55 
GeneralRe: UPDATE! Re: Debug Assertion Failure wincore.cpp Pin
SublimeRide26-Oct-05 7:13
SublimeRide26-Oct-05 7:13 
QuestionRe: UPDATE! Re: Debug Assertion Failure wincore.cpp Pin
David Crow26-Oct-05 8:24
David Crow26-Oct-05 8:24 
AnswerRe: UPDATE! Re: Debug Assertion Failure wincore.cpp Pin
SublimeRide26-Oct-05 9:04
SublimeRide26-Oct-05 9:04 
AnswerRe: UPDATE! Re: Debug Assertion Failure wincore.cpp Pin
SublimeRide27-Oct-05 15:06
SublimeRide27-Oct-05 15:06 
GeneralRe: UPDATE! Re: Debug Assertion Failure wincore.cpp Pin
David Crow28-Oct-05 2:23
David Crow28-Oct-05 2:23 
GeneralRe: UPDATE! Re: Debug Assertion Failure wincore.cpp Pin
SublimeRide28-Oct-05 10:49
SublimeRide28-Oct-05 10:49 
GeneralRe: UPDATE! Re: Debug Assertion Failure wincore.cpp Pin
SublimeRide28-Oct-05 20:20
SublimeRide28-Oct-05 20:20 
GeneralRe: UPDATE! Re: Debug Assertion Failure wincore.cpp Pin
David Crow31-Oct-05 2:33
David Crow31-Oct-05 2:33 
GeneralRe: UPDATE! Re: Debug Assertion Failure wincore.cpp Pin
SublimeRide3-Nov-05 8:11
SublimeRide3-Nov-05 8:11 
QuestionMFC/COM EXE and DLL debugging Pin
Babto20-Oct-05 10:08
Babto20-Oct-05 10:08 
AnswerRe: MFC/COM EXE and DLL debugging Pin
PJ Arends20-Oct-05 11:14
professionalPJ Arends20-Oct-05 11:14 
GeneralRe: MFC/COM EXE and DLL debugging Pin
Babto20-Oct-05 11:46
Babto20-Oct-05 11:46 

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.