Click here to Skip to main content
15,888,351 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
GeneralRe: Thread help Pin
David Crow24-Oct-03 6:25
David Crow24-Oct-03 6:25 
Generalbandwith monitor Pin
Member 52834324-Oct-03 4:38
Member 52834324-Oct-03 4:38 
GeneralRe: bandwith monitor Pin
Alexander M.,24-Oct-03 9:58
Alexander M.,24-Oct-03 9:58 
GeneralExporting to Excel Pin
doctorpi24-Oct-03 3:36
doctorpi24-Oct-03 3:36 
GeneralRe: Exporting to Excel Pin
Dominik Reichl24-Oct-03 3:57
Dominik Reichl24-Oct-03 3:57 
GeneralRe: Exporting to Excel Pin
David Crow24-Oct-03 4:12
David Crow24-Oct-03 4:12 
GeneralOpened in another editor Pin
si_6924-Oct-03 3:27
si_6924-Oct-03 3:27 
Generaladding/coding custom toolbars for the task bar Pin
Alexander M.,24-Oct-03 3:13
Alexander M.,24-Oct-03 3:13 
GeneralRe: adding/coding custom toolbars for the task bar Pin
Iain Clarke, Warrior Programmer24-Oct-03 3:26
Iain Clarke, Warrior Programmer24-Oct-03 3:26 
GeneralRe: adding/coding custom toolbars for the task bar Pin
Alexander M.,24-Oct-03 3:44
Alexander M.,24-Oct-03 3:44 
GeneralAvi files Pin
BlackRider24-Oct-03 2:54
BlackRider24-Oct-03 2:54 
GeneralRe: Avi files Pin
David Crow24-Oct-03 3:02
David Crow24-Oct-03 3:02 

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.