Hallo,
der Compiler versteht deine Abfrage so:
Delphi-Quellcode:
If (not (GetWindowLong(Form19.Handle, GWL_EXSTYLE) and WS_EX_LAYERED)) = WS_EX_LAYERED then
showmessage('Keine Layered Form');
Das möchtest du wahrscheinlich erreichen:
Delphi-Quellcode:
If (GetWindowLong(Form19.Handle, GWL_EXSTYLE) and WS_EX_LAYERED) <> WS_EX_LAYERED then
showmessage('Keine Layered Form');
Gruß Hawkeye