不懂delphi,问一个超级菜的问题:
如何调用http语句如:点击一个按钮,就可以调用 http://192.168.1.123/user=123,password=123,score=88#76#45
应如何 做呢?非常感谢。请尽量说的详细一点。非常感谢。

解决方案 »

  1.   

    uses   shellapi;
    ...
    procedure TForm.BitBtn1Click(Sender: TObject);
    begin
        shellExecute(Handle,nil,'http://192.168.1.123/user=123,password=123,score=88#76#45',nil,nil,sw_normal);   
    end;
      

  2.   

    webbrowse.navigate(''http://192.168.1.123/user=123,password=123,score=88#76#45'');shellExecute(Handle,nil,'http://192.168.1.123/user=123,password=123,score=88#76#45',nil,nil,sw_normal); 
    idhttp.post('http://192.168.1.123/user=123,password=123,score=88#76#45');
      

  3.   

    我也刚学DELPHI,不太会,觉得2楼的应该可以