Author: Tomas Rutkauskas
Invisible title - hide the program's title bar
Answer:
This is a quick way to hide your program's title bar:
1 procedure TForm1.FormCreate(Sender: TObject);
2 var3 OldStyle: longint;
4 begin5 OldStyle := GetWindowLong(Handle, GWL_STYLE);
6 SetWindowLong(Handle, GWL_STYLE, OldStyle andnot WS_CAPTION);
7 ClientHeight := Height;
8 end;