Click here to Skip to main content
15,885,757 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How to stop the thread if it's running? Pin
CPallini29-Apr-09 23:32
mveCPallini29-Apr-09 23:32 
GeneralRe: How to stop the thread if it's running? Pin
Roger Stoltz29-Apr-09 23:40
Roger Stoltz29-Apr-09 23:40 
GeneralRe: How to stop the thread if it's running? Pin
CPallini29-Apr-09 23:44
mveCPallini29-Apr-09 23:44 
GeneralRe: How to stop the thread if it's running? Pin
Rajesh R Subramanian29-Apr-09 22:45
professionalRajesh R Subramanian29-Apr-09 22:45 
GeneralRe: How to stop the thread if it's running? Pin
mikert_200830-Apr-09 0:26
mikert_200830-Apr-09 0:26 
GeneralRe: How to stop the thread if it's running? Pin
Roger Stoltz30-Apr-09 2:54
Roger Stoltz30-Apr-09 2:54 
QuestionRe: How to stop the thread if it's running? Pin
David Crow30-Apr-09 3:58
David Crow30-Apr-09 3:58 
AnswerRe: How to stop the thread if it's running? Pin
David Crow30-Apr-09 4:07
David Crow30-Apr-09 4:07 
You need two CEvent objects, one representing the request from the primary thread to stop, and the other representing the acknowledgment from the secondary thread that it has stopped. When the primary thread responds to a stop request (e.g., Alt+F4, X, Cancel), it signals the first event and then waits for the second event. In the secondary thread, call WaitForSingleObject() on that event with 0 as the wait time. If it comes back as signaled, signal the other event.

"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown

"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons


QuestionHow can I use C# Managed DLL into VC++ Application Pin
PankajB29-Apr-09 20:43
PankajB29-Apr-09 20:43 
AnswerRe: How can I use C# Managed DLL into VC++ Application Pin
Stuart Dootson29-Apr-09 20:50
professionalStuart Dootson29-Apr-09 20:50 
GeneralRe: How can I use C# Managed DLL into VC++ Application Pin
PankajB29-Apr-09 20:53
PankajB29-Apr-09 20:53 
Questionbest font for hindi Pin
Purish Dwivedi29-Apr-09 20:15
Purish Dwivedi29-Apr-09 20:15 
AnswerRe: best font for hindi Pin
CPallini29-Apr-09 21:09
mveCPallini29-Apr-09 21:09 
GeneralRe: best font for hindi Pin
Purish Dwivedi29-Apr-09 22:00
Purish Dwivedi29-Apr-09 22:00 
AnswerRe: best font for hindi Pin
Michael Schubert29-Apr-09 22:05
Michael Schubert29-Apr-09 22:05 
AnswerRe: best font for hindi Pin
Rajesh R Subramanian29-Apr-09 22:15
professionalRajesh R Subramanian29-Apr-09 22:15 
QuestionVisualC++ LineTo() call causes high usage of resouce, causing more RAM usage - Memory Not Releasing Pin
adepumadhu129-Apr-09 20:15
adepumadhu129-Apr-09 20:15 
AnswerRe: VisualC++ LineTo() call causes high usage of resouce, causing more RAM usage - Memory Not Releasing Pin
Cedric Moonen29-Apr-09 20:26
Cedric Moonen29-Apr-09 20:26 
AnswerRe: VisualC++ LineTo() call causes high usage of resouce, causing more RAM usage - Memory Not Releasing Pin
Perry Holman29-Apr-09 22:12
Perry Holman29-Apr-09 22:12 
QuestionRe: VisualC++ LineTo() call causes high usage of resouce, causing more RAM usage - Memory Not Releasing Pin
David Crow30-Apr-09 4:12
David Crow30-Apr-09 4:12 
QuestionNeed help on finishing this basic C program [modified] Pin
biggiant2200029-Apr-09 19:35
biggiant2200029-Apr-09 19:35 
AnswerRe: Need help on finishing this basic C program Pin
_AnsHUMAN_ 29-Apr-09 19:57
_AnsHUMAN_ 29-Apr-09 19:57 
GeneralRe: Need help on finishing this basic C program Pin
biggiant220001-May-09 6:29
biggiant220001-May-09 6:29 
AnswerRe: Need help on finishing this basic C program Pin
Michael Schubert29-Apr-09 22:12
Michael Schubert29-Apr-09 22:12 
QuestionRe: Need help on finishing this basic C program Pin
David Crow30-Apr-09 4:26
David Crow30-Apr-09 4:26 

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.