程序中怎样调用"help.chm"帮助文件,第一个解决问题100分相送(在线等待)(100分)

  • 主题发起人 主题发起人 tranke
  • 开始时间 开始时间
T

tranke

Unregistered / Unconfirmed
GUEST, unregistred user!
代码中怎样调用后缀为“.chm”的帮助文件。
 
只调用简单要搜索有点复杂,但有现成的我不记得那里down的,要的话留下油箱
use shellapi;
var
Apppath: string;
begin
Apppath := extractfilepath(application.ExeName) + 'Help.chm';
ShellExecute(handle, 'open', pchar(Apppath), nil, nil, SW_SHOWNORMAL);
 
使用htmlhelp
 
Function HtmlHelp(hwd : integer;pszFile : String;uCommand :Integer;dwData :LongInt):integer; stdcall;external 'HHCtrl.ocx' name 'HtmlHelpA';
 
大富翁里已经有这个问题的答案了。

你在县等待的时间还不如搜索,我最近就答复了一篇。
ID:1303646
 
谢谢大家,结分!
不过我现在在网吧,无法测试,不过相信能执行的!
china_peng 60
shenloqi 和 yzhshi 各 20
本来只想给第一个解决问题100
但是三人都回答了,我只好这样,希望你们见谅!
接受 china-peng 的答案
 
其实正规调用还是使用htmlhelp,这个可以使用类似id等的信息,而不仅仅是调出chm文件。
 
To china-peng:
我的信箱:youran9@21cn.com
 

Similar threads

后退
顶部