Question on CEvent
-
Yup i did that it gives some error
You still did not specify what error you are getting perhaps that would be more helpfull.
"When death smiles at you, only thing you can do is smile back at it" - Russel Crowe (Gladiator)
-
You still did not specify what error you are getting perhaps that would be more helpfull.
"When death smiles at you, only thing you can do is smile back at it" - Russel Crowe (Gladiator)
I have already got the asnwer to my problem from magnus & time doesnt permit me to do ne more on it
-
I have already got the asnwer to my problem from magnus & time doesnt permit me to do ne more on it
:doh:Oops sorry didnt read that link... that is also a good answer.
"When death smiles at you, only thing you can do is smile back at it" - Russel Crowe (Gladiator)
-
If i declare a CEvent object as a member of my class - a) Is it created such that it is manual reset / automatic b) If automatic how do i tell the CEvent object that it shud be manul reset Dimple
if you use CEvent you us it with the follwing constructor. so you could set bManualRest = TRUE. it doesnt care if you use it as member of your class... karo --- CEvent( BOOL bInitiallyOwn = FALSE, BOOL bManualReset = FALSE, LPCTSTR lpszName = NULL, LPSECURITY_ATTRIBUTES lpsaAttribute = NULL ); ---