Click here to Skip to main content
15,911,789 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Can't connect... Pin
Nish Nishant22-Mar-02 13:55
sitebuilderNish Nishant22-Mar-02 13:55 
GeneralMenu Pin
NC22-Mar-02 10:38
NC22-Mar-02 10:38 
GeneralRe: Menu Pin
Nish Nishant22-Mar-02 13:53
sitebuilderNish Nishant22-Mar-02 13:53 
GeneralRe: Menu Pin
NC25-Mar-02 2:15
NC25-Mar-02 2:15 
QuestionWhere can I find tlogstg.h? Pin
22-Mar-02 10:21
suss22-Mar-02 10:21 
AnswerRe: Where can I find tlogstg.h? Pin
Bill Wilson22-Mar-02 12:51
Bill Wilson22-Mar-02 12:51 
QuestionHow to propagate a message in MFC Pin
al_in_the_city22-Mar-02 9:23
al_in_the_city22-Mar-02 9:23 
AnswerRe: How to propagate a message in MFC Pin
Ravi Bhavnani22-Mar-02 9:35
professionalRavi Bhavnani22-Mar-02 9:35 
In general, you can post the message to the target control/window. You should ensure that doing so won't cause an infinite loop.

CMyView::OnKeyDown
  (UINT nChar,
   UINT nRepCnt,
   UINT nFlags) {
  
  // ...
  
  // Forward the message
  targetWnd.PostMessage (WM_KEYDOWN, ...);
}
/ravi

"There is always one more bug..."
http://www.ravib.com
ravib@ravib.com
GeneralRe: How to propagate a message in MFC Pin
Bill Wilson22-Mar-02 10:49
Bill Wilson22-Mar-02 10:49 
QuestionRUNTIME_CLASS etiquette? Pin
dazinith22-Mar-02 8:58
dazinith22-Mar-02 8:58 
GeneralGood c++ book Pin
NC22-Mar-02 8:39
NC22-Mar-02 8:39 
GeneralRe: Good c++ book Pin
Joaquín M López Muñoz22-Mar-02 10:09
Joaquín M López Muñoz22-Mar-02 10:09 
GeneralRe: Good c++ book Pin
NC22-Mar-02 10:29
NC22-Mar-02 10:29 
GeneralRe: Good c++ book Pin
moliate22-Mar-02 21:57
moliate22-Mar-02 21:57 
GeneralRe: Good c++ book Pin
Dor22-Mar-02 14:26
Dor22-Mar-02 14:26 
GeneralNeed help about CSocket Pin
22-Mar-02 6:41
suss22-Mar-02 6:41 
GeneralRe: Need help about CSocket Pin
Andres Manggini22-Mar-02 7:17
Andres Manggini22-Mar-02 7:17 
GeneralRe: Need help about CSocket Pin
22-Mar-02 7:32
suss22-Mar-02 7:32 
GeneralRe: Need help about CSocket Pin
Andres Manggini22-Mar-02 7:45
Andres Manggini22-Mar-02 7:45 
GeneralRe: Need help about CSocket Pin
22-Mar-02 7:56
suss22-Mar-02 7:56 
GeneralRe: Need help about CSocket Pin
Andres Manggini22-Mar-02 8:14
Andres Manggini22-Mar-02 8:14 
GeneralRe: Need help about CSocket Pin
22-Mar-02 8:30
suss22-Mar-02 8:30 
GeneralRe: Need help about CSocket Pin
Andres Manggini22-Mar-02 8:55
Andres Manggini22-Mar-02 8:55 
GeneralRe: Need help about CSocket Pin
Nish Nishant22-Mar-02 8:29
sitebuilderNish Nishant22-Mar-02 8:29 
GeneralColoured Buttons Pin
joeperris22-Mar-02 6:27
joeperris22-Mar-02 6: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.