Click here to Skip to main content
15,915,733 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Query About SDI Application Pin
Le@rner22-May-09 20:52
Le@rner22-May-09 20:52 
QuestionHow to send a soap message from browser to a local webservice developed in vc++ Pin
sujeet21-May-09 23:07
sujeet21-May-09 23:07 
AnswerRe: How to send a soap message from browser to a local webservice developed in vc++ Pin
ThatsAlok21-May-09 23:11
ThatsAlok21-May-09 23:11 
QuestionWM_KEYDOWN Pin
susanne121-May-09 22:33
susanne121-May-09 22:33 
AnswerRe: WM_KEYDOWN Pin
_AnsHUMAN_ 21-May-09 22:39
_AnsHUMAN_ 21-May-09 22:39 
GeneralRe: WM_KEYDOWN Pin
susanne121-May-09 22:53
susanne121-May-09 22:53 
GeneralRe: WM_KEYDOWN Pin
ThatsAlok21-May-09 23:10
ThatsAlok21-May-09 23:10 
GeneralRe: WM_KEYDOWN Pin
susanne121-May-09 23:20
susanne121-May-09 23:20 
GeneralRe: WM_KEYDOWN [modified] Pin
_AnsHUMAN_ 21-May-09 23:17
_AnsHUMAN_ 21-May-09 23:17 
GeneralRe: WM_KEYDOWN Pin
Stuart Dootson21-May-09 23:23
professionalStuart Dootson21-May-09 23:23 
GeneralRe: WM_KEYDOWN Pin
susanne121-May-09 23:39
susanne121-May-09 23:39 
GeneralRe: WM_KEYDOWN Pin
Stuart Dootson21-May-09 23:52
professionalStuart Dootson21-May-09 23:52 
GeneralRe: WM_KEYDOWN Pin
susanne122-May-09 0:06
susanne122-May-09 0:06 
GeneralRe: WM_KEYDOWN Pin
Stuart Dootson22-May-09 0:26
professionalStuart Dootson22-May-09 0:26 
GeneralRe: WM_KEYDOWN Pin
susanne122-May-09 0:31
susanne122-May-09 0:31 
GeneralRe: WM_KEYDOWN Pin
Rajesh R Subramanian22-May-09 0:46
professionalRajesh R Subramanian22-May-09 0:46 
GeneralRe: WM_KEYDOWN Pin
Stuart Dootson22-May-09 0:58
professionalStuart Dootson22-May-09 0:58 
GeneralRe: WM_KEYDOWN Pin
susanne122-May-09 1:02
susanne122-May-09 1:02 
GeneralRe: WM_KEYDOWN Pin
susanne122-May-09 1:03
susanne122-May-09 1:03 
GeneralRe: WM_KEYDOWN Pin
Stuart Dootson22-May-09 1:12
professionalStuart Dootson22-May-09 1:12 
Have you got some code in your CMainFrame class that you can a) add some code to, and b) guarantee will be executed application's running?

If so, then add a call to the active view's OnKeyDown handler:

GetActiveView()->OnKeyDown((UINT)'a', 1, 0);


Set a breakpoint on that line. When the breakpoint triggers, repeatedly step into the call (it'll call the GetActiveView() methods first, then step back out, then step into the OnKeyDown handler). When you get to an OnKeyDown handler, you can see what the view type is.

Java, Basic, who cares - it's all a bunch of tree-hugging hippy cr*p

GeneralRe: WM_KEYDOWN Pin
susanne122-May-09 1:26
susanne122-May-09 1:26 
GeneralRe: WM_KEYDOWN Pin
Stuart Dootson22-May-09 2:09
professionalStuart Dootson22-May-09 2:09 
GeneralRe: WM_KEYDOWN Pin
susanne122-May-09 2:28
susanne122-May-09 2:28 
GeneralRe: WM_KEYDOWN Pin
Stuart Dootson22-May-09 4:45
professionalStuart Dootson22-May-09 4:45 
GeneralRe: WM_KEYDOWN Pin
susanne124-May-09 22:28
susanne124-May-09 22:28 

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.