Click here to Skip to main content
15,887,214 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: preview file/directory deletion Pin
peterchen23-Feb-06 6:39
peterchen23-Feb-06 6:39 
QuestionRepaint Problem Pin
Deviantizh23-Feb-06 6:17
Deviantizh23-Feb-06 6:17 
AnswerRe: Repaint Problem Pin
peterchen23-Feb-06 6:30
peterchen23-Feb-06 6:30 
QuestionRe: Repaint Problem Pin
Deviantizh23-Feb-06 7:05
Deviantizh23-Feb-06 7:05 
AnswerRe: Repaint Problem Pin
peterchen23-Feb-06 10:35
peterchen23-Feb-06 10:35 
QuestionCode-Generation options Pin
Themis23-Feb-06 5:37
Themis23-Feb-06 5:37 
AnswerRe: Code-Generation options Pin
peterchen23-Feb-06 6:36
peterchen23-Feb-06 6:36 
GeneralRe: Code-Generation options Pin
Mike Dimmick23-Feb-06 7:41
Mike Dimmick23-Feb-06 7:41 
It could be that the original poster has used CreateThread rather than _beginthreadex. Using CreateThread does not initialise the C run-time's internal data structures for the thread, and is unsafe in C code unless you really know what you're doing.

Using the C run-time DLL allows you to get away with calling CreateThread because it does the necessary initialisation in the DLL's DllMain routine, on receiving the DLL_THREAD_ATTACH notification.

Stability. What an interesting concept. -- Chris Maunder
Questionc vs. visual c++ Pin
pplshero5423-Feb-06 5:34
pplshero5423-Feb-06 5:34 
AnswerRe: c vs. visual c++ Pin
toxcct23-Feb-06 5:57
toxcct23-Feb-06 5:57 
AnswerRe: c vs. visual c++ Pin
David Crow23-Feb-06 5:58
David Crow23-Feb-06 5:58 
AnswerRe: c vs. visual c++ Pin
James R. Twine23-Feb-06 6:37
James R. Twine23-Feb-06 6:37 
AnswerRe: c vs. visual c++ Pin
Chris Losinger23-Feb-06 8:35
professionalChris Losinger23-Feb-06 8:35 
AnswerRe: c vs. visual c++ Pin
Joe Woodbury23-Feb-06 8:59
professionalJoe Woodbury23-Feb-06 8:59 
AnswerRe: c vs. visual c++ Pin
jhwurmbach23-Feb-06 22:06
jhwurmbach23-Feb-06 22:06 
GeneralRe: c vs. visual c++ Pin
pplshero5424-Feb-06 3:23
pplshero5424-Feb-06 3:23 
GeneralRe: c vs. visual c++ Pin
jhwurmbach24-Feb-06 3:31
jhwurmbach24-Feb-06 3:31 
QuestionLazy question - EnsureMyWindowIsVisible function Pin
Iain Clarke, Warrior Programmer23-Feb-06 5:30
Iain Clarke, Warrior Programmer23-Feb-06 5:30 
AnswerRe: Lazy question - EnsureMyWindowIsVisible function Pin
James R. Twine23-Feb-06 5:36
James R. Twine23-Feb-06 5:36 
GeneralRe: Lazy question - EnsureMyWindowIsVisible function Pin
Iain Clarke, Warrior Programmer23-Feb-06 8:41
Iain Clarke, Warrior Programmer23-Feb-06 8:41 
AnswerRe: Lazy question - EnsureMyWindowIsVisible function Pin
peterchen23-Feb-06 6:44
peterchen23-Feb-06 6:44 
GeneralRe: Lazy question - EnsureMyWindowIsVisible function Pin
Iain Clarke, Warrior Programmer23-Feb-06 8:25
Iain Clarke, Warrior Programmer23-Feb-06 8:25 
GeneralRe: Lazy question - EnsureMyWindowIsVisible function Pin
Ryan Binns23-Feb-06 14:59
Ryan Binns23-Feb-06 14:59 
GeneralRe: Lazy question - EnsureMyWindowIsVisible function Pin
Iain Clarke, Warrior Programmer23-Feb-06 21:32
Iain Clarke, Warrior Programmer23-Feb-06 21:32 
GeneralRe: Lazy question - EnsureMyWindowIsVisible function Pin
Ryan Binns23-Feb-06 21:34
Ryan Binns23-Feb-06 21:34 

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.