(Gast)
n/a Beiträge
|
Re: goto-befehl in delphi?
25. Jul 2006, 01:16
Zitat von Luckie:
Code:
if Belegnummer = 0 then
exit
if Belegdatum = 0 then
exit
if x = 0 then
exit
if y = 0 then
exit
Delphi-Quellcode:
if not ((Belegnummer = 0) or (Belegdatum = 0) or (x = 0) or (y = 0)) then
begin
...
end;
|
|
Zitat
|