Click here to Skip to main content
16,007,085 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Callback function within a class Pin
Antti Keskinen6-Feb-04 11:12
Antti Keskinen6-Feb-04 11:12 
GeneralRe: Callback function within a class Pin
Cael6-Feb-04 13:20
Cael6-Feb-04 13:20 
GeneralRe: Callback function within a class Pin
Antti Keskinen8-Feb-04 9:59
Antti Keskinen8-Feb-04 9:59 
GeneralRe: Callback function within a class Pin
Cael8-Feb-04 16:32
Cael8-Feb-04 16:32 
GeneralHelp with MFC forms Pin
iboux6-Feb-04 9:52
iboux6-Feb-04 9:52 
GeneralRe: Help with MFC forms Pin
David Crow6-Feb-04 10:52
David Crow6-Feb-04 10:52 
QuestionUse CreateThread or _beginthreadex? Pin
xatanu6-Feb-04 9:41
xatanu6-Feb-04 9:41 
AnswerRe: Use CreateThread or _beginthreadex? Pin
Andrew Walker6-Feb-04 17:48
Andrew Walker6-Feb-04 17:48 
I strongly recommend using boost::thread, which internally uses _beginthreadex. Personally while I've been learning about threading I've spent more time worring more about the higher level details rather than about specific API calls.

Boost::thread prevents many of the common problems - for instance it guarantees that the thread is running before the constructor finishes, as well as providing a variety of lock mechanisms and providing a general way to pass in any function with any signature.

It also provides a way to ensure that a thread will finish.

http://www.boost.org/[^]


If you can keep you head when all about you
Are losing theirs and blaming it on you;
If you can dream - and not make dreams your master;
If you can think - and not make thoughts you aim;
Yours is the Earth and everything that's in it.

Rudyard Kipling

AnswerRe: Use CreateThread or _beginthreadex? Pin
Alexander M.,7-Feb-04 3:04
Alexander M.,7-Feb-04 3:04 
GeneralCMainFrame in DLL Pin
sjcomp6-Feb-04 9:04
sjcomp6-Feb-04 9:04 
GeneralImage processing! Pin
tuantt6-Feb-04 8:42
tuantt6-Feb-04 8:42 
GeneralRe: Image processing! Pin
sjcomp6-Feb-04 9:11
sjcomp6-Feb-04 9:11 
GeneralRe: Image processing! Pin
l a u r e n6-Feb-04 15:32
l a u r e n6-Feb-04 15:32 
General(Newbie) Outlining in VC7 IDE Pin
Ravi Bhavnani6-Feb-04 8:31
professionalRavi Bhavnani6-Feb-04 8:31 
GeneralRe: (Newbie) Outlining in VC7 IDE - edited Pin
Michael P Butler6-Feb-04 8:47
Michael P Butler6-Feb-04 8:47 
GeneralRe: (Newbie) Outlining in VC7 IDE - edited Pin
Ravi Bhavnani6-Feb-04 8:53
professionalRavi Bhavnani6-Feb-04 8:53 
GeneralRe: (Newbie) Outlining in VC7 IDE - edited Pin
l a u r e n6-Feb-04 15:33
l a u r e n6-Feb-04 15:33 
GeneralRe: (Newbie) Outlining in VC7 IDE - edited Pin
Ravi Bhavnani6-Feb-04 15:44
professionalRavi Bhavnani6-Feb-04 15:44 
GeneralRe: (Newbie) Outlining in VC7 IDE - edited Pin
l a u r e n6-Feb-04 15:47
l a u r e n6-Feb-04 15:47 
GeneralRe: (Newbie) Outlining in VC7 IDE - edited Pin
Ravi Bhavnani6-Feb-04 15:57
professionalRavi Bhavnani6-Feb-04 15:57 
GeneralRe: (Newbie) Outlining in VC7 IDE - edited Pin
l a u r e n6-Feb-04 16:00
l a u r e n6-Feb-04 16:00 
GeneralRe: (Newbie) Outlining in VC7 IDE - edited Pin
Ravi Bhavnani6-Feb-04 16:06
professionalRavi Bhavnani6-Feb-04 16:06 
Generalstl iterator Pin
ns6-Feb-04 7:46
ns6-Feb-04 7:46 
GeneralRe: stl iterator Pin
Robert A. T. Káldy7-Feb-04 21:24
Robert A. T. Káldy7-Feb-04 21:24 
GeneralRe: stl iterator Pin
ns9-Feb-04 1:29
ns9-Feb-04 1:29 

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.