![]() |
If Not Problem
Hey, hab ein kleines Problem mit eine If Abfrage, und zwar will ich abfragen wo das Programm liegt und falls es nicht dort liegt soll es dahinkopiert werden.
Delphi-Quellcode:
Fehler: Operator ist auf diesen Operandentyp nicht anwendbar
if not url = 'C:\Test.exe' then CopyFile [...]
Woran liegts? Danke |
Re: If Not Problem
Delphi-Quellcode:
if url <> 'C:\Test.exe' then CopyFile [...]
|
Re: If Not Problem
Delphi-Quellcode:
Ansonsten wird versucht, das not auf url anzuwenden, was natürlich nicht geht ;)
if not (url = 'C:\Test.exe') then CopyFile
|
Re: If Not Problem
Schau dir eventuell mal den Abschnitt
![]() Der NOT-Operator hat Vorrang vor Vergleichsoperatoren und wird somit als Erstes aufgelöst. ohne Klammern wertet es Delphi also so aus:
Delphi-Quellcode:
if (not url) = 'C:\Test.exe' then
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 22:21 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