![]() |
Inkompatible Typen?
Moin,
könnt ihr mir zufällig sagen, wie ich dieses hier verbessern muss?
Delphi-Quellcode:
mfG, Nico
procedure TForm1.Timer1Timer(Sender: TObject);
begin if ((0<GrafikAuto.Top<640) and (0<GrafikAuto.Left<870)) then begin ShowMessage('Das Auto ist im Gebiet'); end; end; |
Re: Inkompatible Typen?
Delphi-Quellcode:
if ( GrafikAuto.Top > 0) and (GrafikAuto.Top <640) and (GrafikAuto.Left > 0) and (GrafikAuto.Left < 870) then
|
Re: Inkompatible Typen?
Danke, jetzt gehts :thumb:
Schönen Abend noch (solangen ich keine Fragen mehr habe :-D) mfG, Nico |
Re: Inkompatible Typen?
Moin Nico,
Delphi-Quellcode:
wäre
(0<GrafikAuto.Top<640)
Delphi-Quellcode:
oder auch
(0 < GrafikAuto.Top) and (GrafikAuto.Top < 640)
Delphi-Quellcode:
Das finde ich etwas lesbarer.
(GrafikAuto.Top > 0) and (GrafikAuto.Top < 640)
(den anderen Vergleich dann analog anpassen) |
Re: Inkompatible Typen?
Zitat:
|
Re: Inkompatible Typen?
Moin Dominik,
danke für den Hinweis. Ich habe den Tipfehler korrigiert. |
Alle Zeitangaben in WEZ +1. Es ist jetzt 21:07 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