chm帮助问题(100分)

  • 主题发起人 主题发起人 zhouhuice
  • 开始时间 开始时间
Z

zhouhuice

Unregistered / Unconfirmed
GUEST, unregistred user!
Delphi 中如何使用chm的帮助,特别是如何在DialogBox中使用(现在的只能用hlp)?<br><br>另外,论坛的搜索引擎不能用!!
 
USES SHELLAPI;<br><br>&nbsp;ShellExecute(handle, 'open', 'YOU.chm',nil,nil, SW_SHOWMAXIMIZED);
 
支持楼上的
 
如果要通用点的,可以<br>var helpfile:pchar;<br>helpfile:=PChar(extractfilepath(application.exename)+'help.chm');<br>if fileexists(extractfilepath(application.exename)+'help.chm') then<br>ShellExecute(0, nil, p, nil, nil, SW_NORMAL)<br>else<br>showmessage('can't find help file');<br>支持楼主的,搜索确实不能用
 
后退
顶部