请教如何用DELPHI打开网页?并通过DELPHI王页面中附值?在线等!

解决方案 »

  1.   

    ShellAPI的
    ShellExecute就行,找Baidu就行_____________________
    http://lysoft.7u7.net
      

  2.   

    用WebBrowser控件显,
    用Navigate方法定义或更改网址
      

  3.   

    http://blog.joycode.com/jiangsheng/archive/2005/10/20/65489.aspx
      

  4.   

    procedure TForm1.Button1Click(Sender: TObject); 
    begin 
      Webbrowser1.Navigate('http://www.swissdelphicenter.ch/en/addtip.php'); 
      // Show the Titel of the currently active Webpage in the titlebar 
      // Den Titel der aktuellen Webseite in der Titeleiste anzeigen 
      Caption := Webbrowser1.OleObject.Document.Title; 
    end