Windows with Delphi Windows API (94) Windows Filesystem (41) Windows Forms (69) Windows Graphics (38)
Exchange Links About this site Links to us 
|
Invisible title - hide the program's title bar (second possibility)
This article has not been rated yet. After reading, feel free to leave comments and rate it.
This is a another way to hide your program's title bar:
Override the CreateParams method as shown here:
 | |  | |
procedure CreateParams(var Params : TCreateParams); override;
...
procedure TForm1.CreateParams(var Params : TCreateParams);
begin
inherited Createparams(Params);
with Params do
Style := (Style or WS_POPUP) and not WS_DLGFRAME;
end; | |  | |  |
Comments:
|