如何將 *.chm 格式的幫助文件嵌入delphi 系統中?(50分)

  • 主题发起人 主题发起人 小阿文
  • 开始时间 开始时间

小阿文

Unregistered / Unconfirmed
GUEST, unregistred user!
請教各信位大俠:
我用 htmlhelp.exe 制作的幫助文件格式為 *.chm,是有 web風格但不知
如何嵌入 在delphi系統中?
另外我做的 *.hlp格式的我已可以嵌入在delphi系統中.
 
procedure ShowHelp;
var
tmpstr:string;
begin
tmpStr:=Extractfiledir(Application.ExeName)+'/PlatZhk.chm';
ShellExecute(0,nil,PChar(tmpStr),nil,nil,SW_SHOWNORMAL);
end;
 
ShellExecute(Handle, 'open', 'c:/.../xxx.chm', nil, nil, SW_SHOW);



 
platzhk.chm可以改为你的帮助文件名
 
兩位高手回答的都對,另外要在 uses中添加 shellapi.
thanks a lot
 
后退
顶部