Registriert seit: 10. Jun 2002
Ort: Unterhaching
11.412 Beiträge
Delphi 12 Athens
|
Re: Format mit einem "normalen" %
2. Okt 2004, 21:54
Versuche mal:
Code:
procedure TForm1.Button1Click(Sender: TObject);
const
Prozent = 45;
begin
Label1.Caption := Format('Batteriezustand: %d %[color=#ff0000]%[/color]', [Prozent]);
end;
... ...
Daniel Lizbeth Ich bin nicht zurück, ich tue nur so
|