请问如何在DELPHI6中调用CHM帮助文件?(50分)

  • 主题发起人 主题发起人 linbz
  • 开始时间 开始时间
L

linbz

Unregistered / Unconfirmed
GUEST, unregistred user!
请问如何在DELPHI6中调用CHM帮助文件?
 
关注!!!
找到了
 
ShellExecute(Application.Handle,'open','f:/IESUPP.chM','SW_MAXIMIZE','f:/' ,i)
 
uses ShellAPI


procedure TForm1.BitBtn2Click(Sender: TObject);
var
i:integer;
begin
//ShellExecute(hWnd: HWND; Operation, FileName, Parameters,Directory: PChar; ShowCmd: Integer)
ShellExecute(Application.Handle,'open','f:/IESUPP.chM','SW_MAXIMIZE','f:/' ,i)
end;
 
uses shellapi
...
begin
ShellExecute(handle,nil,'indexsyy.chm',nil,nil,SW_SHOWNORMAL);
end;
这样简单多了。
 
多人接受答案了。
 
后退
顶部