Invoke Help File when F1 is pressed
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
I would like to invoke help file of my application when F1 is pressed by user. System is trying to open Windows Help when i press F1 Any suggesstions. With Thanks & Regards --Kamesh
Add message map for the command ID ID_HELP in your application. Like, ON_COMMAND(ID_HELP, OnMyHelpFun). Inside OnMyHelpFun, you can add code for invoking the help file.
-
Add message map for the command ID ID_HELP in your application. Like, ON_COMMAND(ID_HELP, OnMyHelpFun). Inside OnMyHelpFun, you can add code for invoking the help file.