各位大虾好:  
    我想给我的delphi开发的软件写一个帮助文档,请问怎么写啊?我现在已经找到Microsoft Help Workshop这个软件,准备用这个软件写帮助,写好以后,delphi怎么调用它啊?请详细的给我解释一下,谢谢!

解决方案 »

  1.   

    1 uses shellapi
    ShellExecute(Handle, 'open', PChar('d:\ks\delphitips.chm'),nil, nil, SW_SHOW);2 
    if FileExists(ExtractFilePath(Application.ExeName)+'Help.CHM') then
      begin
        winexec('HH.EXE Help.CHM',SW_NORMAL);
      end楼主法的太多了。
      

  2.   

    uses ShellApi
    ShellExecute(handle, 'open', 'help.chm', nil, nil, SW_SHOWNORMAL);
    楼主的分太多了,接分!
      

  3.   

    project / options  / application / help file 在编辑框中写的帮助文件的路径,就OK 了
      

  4.   

    调用方法很简单:http://218.56.11.178:8020/web/index.aspx
    -》下载基地-》例程-基础应用-》实现发送邮件的链接和打开网页的连接
      

  5.   

    我的建议:直接用DreamWeaver作出。
    帮助直接以HTM格式送出!
    在网上也放一份,可以让客户得到最近的更新!
      

  6.   

    ShellExecute(handle, 'open', 'help.chm', nil, nil, SW_SHOWNORMAL);
      

  7.   

    var
      Frm_main: TFrm_main;
      function HtmlHelpA (hwndcaller:Longint;lpHelpFile:string;wCommand:Longint;
                 dwData:string):HWND;STDCALL;EXTERNAL 'hhctrl.ocx' ;
    implementation
    /////
    procedure TFrm_main.N_helpClick(Sender: TObject);
    begin
      HtmlHelpA(handle,ExtractFilePath(Paramstr(0))+'\file\Sports.chm',2,'欢迎使用.htm');
    end;
      

  8.   

    留下email我可以给你发一个如何做帮助的东东