Htmlhelp Forensics - CodeProject
system(" /Q /E:ON /C HH.EXE ms-its:myChm.chm::myPageName.htm");
HTMLHelp command-line (help-info.de)
The help system infrastructure was designed to integrate with normal Win32 development in Visual Studio, but this is not technically necessary. Basically you just call HtmlHelp(GetDesktopWindow(), "Yourhelp.chm", HH_HELP_CONTEXT, IDYourCurrentContext);.
QT中调用:
QProcess::execute("hh.exe D:/Manual.chm::page1.htm");
网友评论