RemusRigo
Programmer
- May 3, 2008
- 5
hi guyz
is there any way to do this?
any tips/articles/links are welcome
thanks
is there any way to do this?
any tips/articles/links are welcome
thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
procedure TContactMenu.LabelMouseEnter(Sender: TObject);
begin
with Sender as TLabel do Font.color:= clBlue
end;
procedure TContactMenu.LabelMouseLeave(Sender: TObject);
begin
with Sender as TLabel do Font.color:= clBlack
end;
procedure TContactMenu.LabelClick(Sender: TObject);
begin
with Sender as TLabel do
if Name = 'Label1' then GoYahoo
else if Name = 'Label2' then GoGMail
else if Name = 'Label3' then GoHotMail;
end;