Click here to Skip to main content
15,886,518 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: CImageList for CTreeCtrl Pin
Hamid_RT9-Jul-06 21:07
Hamid_RT9-Jul-06 21:07 
QuestionRe: CImageList for CTreeCtrl Pin
anu_889-Jul-06 21:14
anu_889-Jul-06 21:14 
AnswerRe: CImageList for CTreeCtrl Pin
Hamid_RT9-Jul-06 21:23
Hamid_RT9-Jul-06 21:23 
GeneralRe: CImageList for CTreeCtrl Pin
anu_889-Jul-06 22:26
anu_889-Jul-06 22:26 
Question_endthreadex() Pin
Programmer Anju9-Jul-06 19:43
Programmer Anju9-Jul-06 19:43 
AnswerRe: _endthreadex() Pin
ThatsAlok9-Jul-06 20:39
ThatsAlok9-Jul-06 20:39 
AnswerRe: _endthreadex() Pin
ThatsAlok9-Jul-06 20:49
ThatsAlok9-Jul-06 20:49 
AnswerRe: _endthreadex() Pin
Daniel Lohmann9-Jul-06 21:48
Daniel Lohmann9-Jul-06 21:48 
If a thread or process terminates, the OS-internal thread/process object is set to signaled state - the state you can use to wait for with e.g. WaitForSingleObject(). So if hThread is your thread handle, the following would wait until the thread has actually terminated:

WaitForSingleObject( hThread, INFINITE )

The point is that you might also use the waiting functions to test if an object (in this case the thread) is in signaled state (in this case has terminated) by just using 0 as the timeout value:

if( WaitForSingleObject( hThread, 0 ) == WAIT_TIMEOUT ) {
// not terminated yet
}



--

Daniel Lohmann

http://www.losoft.de
(Hey, this page is worth looking! You can find some free and handy NT tools there Big Grin | :-D )
GeneralRe: _endthreadex() Pin
ThatsAlok9-Jul-06 21:59
ThatsAlok9-Jul-06 21:59 
Questionother then resource editor any method to create dialogbox Pin
Krishnatv9-Jul-06 19:18
Krishnatv9-Jul-06 19:18 
AnswerRe: other then resource editor any method to create dialogbox Pin
_AnsHUMAN_ 9-Jul-06 19:29
_AnsHUMAN_ 9-Jul-06 19:29 
GeneralRe: other then resource editor any method to create dialogbox Pin
Krishnatv9-Jul-06 19:38
Krishnatv9-Jul-06 19:38 
GeneralRe: other then resource editor any method to create dialogbox Pin
_AnsHUMAN_ 9-Jul-06 19:46
_AnsHUMAN_ 9-Jul-06 19:46 
GeneralRe: other then resource editor any method to create dialogbox Pin
Krishnatv9-Jul-06 20:07
Krishnatv9-Jul-06 20:07 
GeneralRe: other then resource editor any method to create dialogbox Pin
_AnsHUMAN_ 9-Jul-06 20:28
_AnsHUMAN_ 9-Jul-06 20:28 
GeneralRe: other then resource editor any method to create dialogbox Pin
Krishnatv9-Jul-06 20:45
Krishnatv9-Jul-06 20:45 
GeneralRe: other then resource editor any method to create dialogbox Pin
Krishnatv9-Jul-06 20:53
Krishnatv9-Jul-06 20:53 
AnswerRe: other then resource editor any method to create dialogbox Pin
ThatsAlok9-Jul-06 19:40
ThatsAlok9-Jul-06 19:40 
AnswerRe: other then resource editor any method to create dialogbox Pin
Hamid_RT9-Jul-06 20:29
Hamid_RT9-Jul-06 20:29 
GeneralRe: other then resource editor any method to create dialogbox Pin
ThatsAlok9-Jul-06 20:36
ThatsAlok9-Jul-06 20:36 
GeneralRe: other then resource editor any method to create dialogbox Pin
Hamid_RT9-Jul-06 21:03
Hamid_RT9-Jul-06 21:03 
GeneralRe: other then resource editor any method to create dialogbox Pin
Krishnatv9-Jul-06 20:51
Krishnatv9-Jul-06 20:51 
GeneralRe: other then resource editor any method to create dialogbox Pin
Hamid_RT9-Jul-06 21:30
Hamid_RT9-Jul-06 21:30 
QuestionOnCbnEditchangeCombo1() Pin
Joy Anne9-Jul-06 19:08
Joy Anne9-Jul-06 19:08 
AnswerRe: OnCbnEditchangeCombo1() Pin
FarPointer9-Jul-06 20:27
FarPointer9-Jul-06 20:27 

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.