Registriert seit: 10. Jun 2002
Ort: Unterhaching
11.412 Beiträge
Delphi 12 Athens
|
Re: Raondom und if Abfrage
4. Jan 2004, 20:07
Wie wäre es mit
Delphi-Quellcode:
if Label1.Caption = '1' then
// do 1
else if Label1.Caption = '2' then
// do 2
else if Label1.Caption = '3' then
// do 3
else if Label1.Caption = '4' then
// do 4
else
// do else
... ...
Daniel Lizbeth Ich bin nicht zurück, ich tue nur so
|