![]() |
if-Abfrage
Hallo und guten Morgen,
hab als Anfänger ein kleines Problem mit einer If-Abfrage:
Code:
wo liegt mein Fehler?
procedure THauptF.LadungsgewichtEExit(Sender: TObject);
begin if (NutzlastE.Text = '') or (NutzlastE.Text = 0) then begin Application.MessageBox('Nutzlast eingeben','Dateneingabe',48); NutzlastE.SetFocus end; end; mfG blacky |
Re: if-Abfrage
Zitat:
Ich nehme mal an
Delphi-Quellcode:
ändere das mal zu:
(NutzlastE.Text = 0)
Delphi-Quellcode:
oder
(NutzlastE.Text = '0')
Delphi-Quellcode:
oder
(NutzlastE.Text = #48)
Delphi-Quellcode:
oder
(StrToInt(NutzlastE.Text) = 0)
Delphi-Quellcode:
Bye
(StrToIntDef(NutzlastE.Text, 0) = 0)
Edit: nimm für Delhi Code bitte die delphi codetags und nicht die normalen :zwinker: |
Re: if-Abfrage
Vielleicht liegts auch an dem fehlenden Semikolon bei NutzlastE.SetFocus ?
|
Re: if-Abfrage
Zitat:
Greetz alcaeus |
Re: if-Abfrage
Zitat:
Bye |
Alle Zeitangaben in WEZ +1. Es ist jetzt 14:36 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz