How put I a help file in my program?
Perhaps something like this will work for you:
case IDM_HELPCONTENTS: WinHelp( hwnd, (LPSTR) "HELPFILE.HLP", HELP_CONTENTS, 0L ); return 0;
BR Kurt
Where do I have to put that? in the WM_CREATE case?
Hi,
No you want to put that in your main message loop inside the switch as its own case.
Kip
woops, sry, actually that goes inside your WM_COMMAND.
Log in to post a comment.
How put I a help file in my program?
Perhaps something like this will work for you:
case IDM_HELPCONTENTS:
WinHelp( hwnd, (LPSTR) "HELPFILE.HLP",
HELP_CONTENTS, 0L );
return 0;
BR Kurt
Where do I have to put that? in the WM_CREATE case?
Hi,
No you want to put that in your main message loop inside the switch as its own case.
Kip
woops, sry, actually that goes inside your WM_COMMAND.
Kip