Topic: I need a script to open a web page by clicking on a button

I need a script to open a web page by clicking on a button.
thanks!

Domebil

Re: I need a script to open a web page by clicking on a button

procedure Form1_Button1_OnClick (Sender: string; var Cancel: boolean);
begin
    OpenURL('http://google.com');
end;
Dmitry.