Quote:
Originally Posted by fabrieunko
Hi,
how did you put the icons on the left?
|
You can add these icons using this font.
nameIcon:=TLabel.Create(nameForm);
with nameIcon do
begin
Parent:=AutorunForm;
SetBounds(0,0,0.0,0);
with Font do
begin
Name:='Symbol Font';
Size:=0;
Color:=$FFFFFF;
Caption:=#$E13D;
OnClick:=@nameiconOnClick;
OnMouseEnter:=@nameIconEnter;
OnMouseLeave:=@nameIconLeave;
BringToFront;
end;