Click here to Skip to main content
15,899,679 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Arrays, heap, delete and crash! Pin
Gary R. Wheeler25-Oct-03 4:18
Gary R. Wheeler25-Oct-03 4:18 
GeneralRe: Arrays, heap, delete and crash! Pin
Kelly Herald24-Oct-03 10:52
Kelly Herald24-Oct-03 10:52 
GeneralRe: Arrays, heap, delete and crash! Pin
Rickard Andersson2024-Oct-03 11:00
Rickard Andersson2024-Oct-03 11:00 
GeneralRe: Arrays, heap, delete and crash! Pin
igor196024-Oct-03 10:55
igor196024-Oct-03 10:55 
GeneralClass Wizard Problem Pin
ElizabethC24-Oct-03 9:20
ElizabethC24-Oct-03 9:20 
GeneralRe: Class Wizard Problem Pin
ElizabethC24-Oct-03 10:17
ElizabethC24-Oct-03 10:17 
GeneralYUV image format Pin
Raphael Kindt24-Oct-03 7:05
Raphael Kindt24-Oct-03 7:05 
GeneralRe: YUV image format Pin
David Crow24-Oct-03 8:29
David Crow24-Oct-03 8:29 
GeneralBUG: Registration of Attributed ATL Component fails with Web References Pin
arun140524-Oct-03 6:41
arun140524-Oct-03 6:41 
QuestionHow to overcome the 32K size limit in CFileDialog? Pin
Ted94424-Oct-03 5:34
Ted94424-Oct-03 5:34 
AnswerRe: How to overcome the 32K size limit in CFileDialog? Pin
David Crow24-Oct-03 6:19
David Crow24-Oct-03 6:19 
GeneralRe: How to overcome the 32K size limit in CFileDialog? Pin
Ted94424-Oct-03 6:33
Ted94424-Oct-03 6:33 
AnswerRe: How to overcome the 32K size limit in CFileDialog? Pin
valikac24-Oct-03 6:39
valikac24-Oct-03 6:39 
GeneralRe: How to overcome the 32K size limit in CFileDialog? Pin
Ted94424-Oct-03 7:23
Ted94424-Oct-03 7:23 
GeneralDirect x Pin
Member 64940724-Oct-03 5:26
Member 64940724-Oct-03 5:26 
GeneralRe: Direct x Pin
Alexander M.,24-Oct-03 10:10
Alexander M.,24-Oct-03 10:10 
GeneralRe: Direct x Pin
Atlantys24-Oct-03 11:01
Atlantys24-Oct-03 11:01 
GeneralRe: Direct x Pin
Alexander M.,24-Oct-03 11:39
Alexander M.,24-Oct-03 11:39 
GeneralCreateEvent Pin
includeh1024-Oct-03 4:53
includeh1024-Oct-03 4:53 
GeneralRe: CreateEvent Pin
Mike Dimmick24-Oct-03 6:02
Mike Dimmick24-Oct-03 6:02 
Typically you use an unnamed event to communicate between two threads in the same process. In this case, you only call CreateEvent once, storing the event handle in some well known location.

You can also use DuplicateHandle to open a new handle to a handle you do know about that lives in another process. You might use some form of interprocess communications (window messaging, shared memory, RPC) to tell one process about the other process's event handle.

However, you can never reopen an existing unnamed event object using CreateEvent - you always get a new one for each call.
GeneralRe: CreateEvent Pin
Alexander M.,24-Oct-03 10:13
Alexander M.,24-Oct-03 10:13 
GeneralThread help Pin
jimNLX24-Oct-03 4:51
jimNLX24-Oct-03 4:51 
GeneralRe: Thread help Pin
includeh1024-Oct-03 4:57
includeh1024-Oct-03 4:57 
GeneralRe: Thread help Pin
Mike Dimmick24-Oct-03 6:12
Mike Dimmick24-Oct-03 6:12 
GeneralRe: Thread help Pin
jhwurmbach24-Oct-03 5:38
jhwurmbach24-Oct-03 5:38 

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.