Hallo!
Delphi-Quellcode:
FHandle := Windows.CreateWindowEx(
0,
'TestApp',
'Main Window',
FWindowStyle,
CW_USEDEFAULT, // horizontale Position
CW_USEDEFAULT, // vertikale Position
CW_USEDEFAULT, // Breite
CW_USEDEFAULT, // Höhe
ParentHandle,
0,
MainInstance,
Self);
Die Warnung tritt bei den Konstanten CW_USEDEFAULT auf. Warum verletzt der Konstantenausdruck untere Grenzen. CW_USEDEFAULT ist doch eine in der
Unit Windows vordefinierte Konstante und CreateWindowEx ist eine ganz normale
API Funktion??????
Was will mir der Compiler hier sagen?
Delphi Sourcer