use shellapi
ShellExecute(handle,pchar('open'),pchar(Filename),nil,nil,SW_NORMAL);      

解决方案 »

  1.   

    就是这么简单:
    use shellapi
    ShellExecute(handle,pchar('open'),pchar(Filename),nil,nil,SW_NORMAL);      
      

  2.   

    use shellapi
    ShellExecute(handle,pchar('open'),pchar(Filename),nil,nil,SW_NORMAL);      
    或者:
    var
      wb1 :TWebBrowser;
    begin
      wb1 := TWebBrowser.create(self);
      wb1.navigate(yourhelpfile);
    end;
      

  3.   

    我还是不很明白,我想实现的是当我的相知道软件中某些按键的功能时,把焦点移上去后按 F1就能进入主题。
    麻烦你们了,我是一个新手,希望解答时详细 一点。
    thanks
      

  4.   

     try
        ShellExecute(handle,'open',pchar('帮助文件.chm'),nil,nil,SW_SHOWNORMAL);
      except
        MessageBox(handle,'帮助正在建设中,请梢后访问!','注意',mb_ok);
      end;
      

  5.   

    将各控件的属性HelpContext设为帮助文件的Context即可
      

  6.   

    context值有什么意义? 如何取 ? 取多少?
      

  7.   

    ShellExecute函数 只能运行一个程序,但有没有办法做成联机的帮助、
    软件中某些按键的功能时,把焦点移上去后按 F1就能进入主题。
    麻烦你们了,我是一个新手,希望解答时详细 一点。
      

  8.   

    http://www.csdn.net/expert/topic/251/251103.shtm