![]() |
Order and save right now!
20% off with the 729824315 dicscount code for Ultimate Pack and any another product for Delphi from Greatis Programming! |
⤷ Align menu text to the right
If you want align menu items text to the right, then you may use this little deceit.
procedure TForm1.FormCreate(Sender: TObject);
var
i: Integer;
begin
with MainMenu1 do
for i:=0 to Items.Count-1 do
Items[i].Caption:=Chr(8)+Items[i].Caption;
end;
-
More for developers