请问如何用delphi组建打开帮助文件(*.HLP)

解决方案 »

  1.   

    ShellExecute(HInstance,'Open','C:\help.hlp',nil,nil,SW_Show)
      

  2.   

    ShellExecute(HInstance,'Open','C:\help.hlp',nil,nil,SW_Show)
    帮欠再UP 一下了~
      

  3.   


       Application.HelpFile := 'help.hlp';//你的帮助文件名
       Application.HelpCommand(Help_CONTENTS,0);
      

  4.   

    ShellExecute(0,'Open','d:\help.hlp',nil,nil,SW_Show);
    在uses中添加shellapi单元.
      

  5.   

    Procedure Tform1.Button1Click(Sender:TOBject);
    begin
      winhelp(form1.clienthandle,'C:\help.hlp',help_contents,0);
    end;