Ich weiß nicht ob das der offizielle Weg ist, aber so geht es:
Delphi-Quellcode:
var
WindowStyle : Integer;
begin
WindowStyle:=GetWindowLong(Self.Handle,GWL_EXSTYLE);
WindowStyle:=WindowStyle or WS_EX_APPWINDOW;
SetWindowLong(Self.Handle,GWL_EXSTYLE,WindowStyle);