Click here to Skip to main content
15,893,190 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: A C PROGRAM to extract a bit or a group of bits from a Ethernet frame Pin
Albert Holguin29-Feb-12 10:45
professionalAlbert Holguin29-Feb-12 10:45 
AnswerRe: A C PROGRAM to extract a bit or a group of bits from a Ethernet frame Pin
G. Edwin29-Feb-12 23:32
G. Edwin29-Feb-12 23:32 
SuggestionRe: A C PROGRAM to extract a bit or a group of bits from a Ethernet frame Pin
G. Edwin1-Mar-12 18:56
G. Edwin1-Mar-12 18:56 
AnswerRe: A C PROGRAM to extract a bit or a group of bits from a Ethernet frame Pin
JackDingler2-Mar-12 7:51
JackDingler2-Mar-12 7:51 
QuestionCall Class Members from Interrupt Routine Pin
Andy20228-Feb-12 22:04
Andy20228-Feb-12 22:04 
AnswerRe: Call Class Members from Interrupt Routine Pin
Jochen Arndt28-Feb-12 22:34
professionalJochen Arndt28-Feb-12 22:34 
GeneralRe: Call Class Members from Interrupt Routine Pin
Andy20228-Feb-12 22:50
Andy20228-Feb-12 22:50 
GeneralRe: Call Class Members from Interrupt Routine Pin
Jochen Arndt28-Feb-12 23:05
professionalJochen Arndt28-Feb-12 23:05 
No, it has not to do with other events. I just choosed the word because it matches when using an interrupt routine. I can't give you a working example, because I don't know about your current implementation and requirements. But I can try to give you short implementation list:

  1. Decide where to handle the messages (main frame or other window).
  2. Pass the handle of the window to your interrupt service class using the m_hWnd member of your CWnd derived class. The service class should contain a member var for the handle.
  3. Add the message definition to a header file (project header file or those of the window class).
  4. Add the user message handler to your window class.
  5. Call PostMessage from your interrupt handler.

AnswerRe: Call Class Members from Interrupt Routine Pin
enhzflep28-Feb-12 23:34
enhzflep28-Feb-12 23:34 
GeneralRe: Call Class Members from Interrupt Routine Pin
CPallini29-Feb-12 0:18
mveCPallini29-Feb-12 0:18 
GeneralRe: Call Class Members from Interrupt Routine Pin
Andy20229-Feb-12 5:15
Andy20229-Feb-12 5:15 
GeneralRe: Call Class Members from Interrupt Routine Pin
enhzflep29-Feb-12 5:22
enhzflep29-Feb-12 5:22 
GeneralRe: Call Class Members from Interrupt Routine Pin
Erudite_Eric1-Mar-12 22:37
Erudite_Eric1-Mar-12 22:37 
GeneralRe: Call Class Members from Interrupt Routine Pin
enhzflep1-Mar-12 22:44
enhzflep1-Mar-12 22:44 
GeneralRe: Call Class Members from Interrupt Routine Pin
Erudite_Eric1-Mar-12 22:55
Erudite_Eric1-Mar-12 22:55 
GeneralRe: Call Class Members from Interrupt Routine Pin
Richard MacCutchan29-Feb-12 5:34
mveRichard MacCutchan29-Feb-12 5:34 
GeneralRe: Call Class Members from Interrupt Routine Pin
Jochen Arndt29-Feb-12 5:59
professionalJochen Arndt29-Feb-12 5:59 
GeneralRe: Call Class Members from Interrupt Routine Pin
Andy20229-Feb-12 6:10
Andy20229-Feb-12 6:10 
GeneralRe: Call Class Members from Interrupt Routine Pin
Erudite_Eric1-Mar-12 22:39
Erudite_Eric1-Mar-12 22:39 
GeneralRe: Call Class Members from Interrupt Routine Pin
Andy2022-Mar-12 0:15
Andy2022-Mar-12 0:15 
GeneralRe: Call Class Members from Interrupt Routine Pin
Erudite_Eric4-Mar-12 21:29
Erudite_Eric4-Mar-12 21:29 
GeneralRe: Call Class Members from Interrupt Routine Pin
Jochen Arndt29-Feb-12 6:00
professionalJochen Arndt29-Feb-12 6:00 
GeneralRe: Call Class Members from Interrupt Routine Pin
Erudite_Eric1-Mar-12 22:31
Erudite_Eric1-Mar-12 22:31 
GeneralRe: Call Class Members from Interrupt Routine Pin
enhzflep1-Mar-12 22:41
enhzflep1-Mar-12 22:41 
AnswerRe: Call Class Members from Interrupt Routine Pin
JackDingler2-Mar-12 7:41
JackDingler2-Mar-12 7:41 

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.