Ich erzeuge ein Fenster über
CreateWindowEx(0, ClassName, AppName, 0, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, 0, 0, HInstance, nil);
Trotzdem hat es eine Titelleiste (die ich nicht brauchen kann), weshalb ich versucht habe sie über
SetWindowLong(HMainWnd, GWL_STYLE, GetWindowLong(HMainWnd, GWL_STYLE) and not WS_CAPTION);
zu entfernen. Das Ergebnis sind allerdings eigenartige Darstellungsfehler.
Mit
VCL funktioniert das über
Delphi-Quellcode:
SetWindowLong(MyForm.Handle, GWL_STYLE, GetWindowLong(MyForm.Handle, GWL_STYLE) and not WS_CAPTION);
MyForm.ClientHeight := MyForm.Height;
MyForm.Refresh;
Weiß jemand, was ich anders machen muss?
"Electricity is actually made up of extremely tiny particles called electrons, that you cannot see with the naked eye unless you have been drinking." (Dave Barry)