![]() |
Problemt mit einer if-Abfrage
also ich habe folgendes programmiert
Delphi-Quellcode:
der sinn:: wenn command nich = shutdown ist und gleichzeitig aber auch nich = lockwst ist soll eine shwomessage angezeigt werden
if not command = 'shutdown' and not command = 'lockwst' then showmessage(msg)
mein compiler mäckert aber und zwar das hier Zitat:
|
Re: Problemt mit einer if-Abfrage
Delphi-Quellcode:
Klammern nicht vergessen !
if not (command = 'shutdown') and not (command = 'lockwst') then
|
Re: Problemt mit einer if-Abfrage
Hai PBiggi,
wenn ich dich richtig verstehe soll die Meldung kommen wenn command nicht "shutdown" oder "lockwst" ist? dann könntest Du das auch so mache:
Delphi-Quellcode:
Ist so einfach finde ich.
if not ((command = 'shutdown') or (command = 'lockwst')) then
|
Re: Problemt mit einer if-Abfrage
genau und danke so funktionierts ;)
|
Re: Problemt mit einer if-Abfrage
Zitat:
Delphi-Quellcode:
aber viel leichte zu durchschauen.
if (command <> 'shutdown') and (command <> 'lockwst') then
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 02:17 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