![]() |
"if " aisdruck
[delphi]
if a<3000 and b<1000 then begin [/deplhi] kann mir einer sagen, warum das nicht geht? beim "<" bei b sagt er immer: "Operator not applicable to this operand type" kann mir einer helfen? mfG |
Re: "if " aisdruck
Versuchs mal mit Klammern:
Delphi-Quellcode:
if (a<3000) and (b<1000) then
begin |
Re: "if " aisdruck
Hi,
du musst die einzelnen Ausdrücke einklammern:
Delphi-Quellcode:
if (a < 3000) and (b < 1000) then
begin end; |
Re: "if " aisdruck
danke leude :P
echt klasse ;) mfG |
Re: "if " aisdruck
Delphi-Quellcode:
MfG
if (a < 3000) and (b < 1000) then
begin ... end; freak |
Alle Zeitangaben in WEZ +1. Es ist jetzt 11:51 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 by Thomas Breitkreuz