Topic: Link into button or label

Hello,
I need to create a button or a label to link a web page. Please, how can I do it?

Re: Link into button or label

Hello.



Example:

// for a label
procedure Form1_Label1_OnClick (Sender: string);
begin
    OpenURL('http://google.com');
end;

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

Re: Link into button or label

Thank you very much Dmitry