I have a VC 6.0 app. From my app, I launch a Help Manual that was created in RoboHelp Classic. I can successfully launch the Help Manual from my app, no problem. I accomplish this with the following code:
CString s_FileName = ((CMyApp *) AfxGetApp())->GetProgramDi
rectory();
s_FileName += "MyHelpManual.HLP";
CString s_Temp = "winhlp32.exe ";
s_Temp += s_FileName;
WinExec(s_Temp,SW_SHOW);
What I'd like to also be able to do is lauch the help manual, but when programmatically make it open to a certain page in the help manual. I want to do this on a button click on one of my dialogs.
Thanks ahead of time.
Start Free Trial