Search results for 'Hide Caption Bar'. 1 post(s) found.
- 2007/08/25 How can I hide the caption bar on a form?
To hide the Caption Bar you need to override on of the default form methods CreateParams (this also exists for other objects).
The CreateParams method initializes a window-creation parameter record passed in the Params parameter (ref:Delphi Help).
Go to the protected/public section on the form and override the CreateParams method by typing the following:
procedure CreateParams(var Params: TCreateParams); override;
Within the unit type the following for the CreateParams method.
procedure TForm1.CreateParams(var Params: TCreateParams);
begin
inherited CreatePArams (Params);
with Params do
style := (Style or WS_POPUP) and (not WS_DLGFRAME);
end;unit Unit1;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
type
TForm1 = class(TForm)
private
{ Private declarations }
procedure CreateParams(var Params: TCreateParams); override;
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.CreateParams(var Params: TCreateParams);
begin
inherited CreatePArams (Params);
with Params do
style := (Style or WS_POPUP) and (not WS_DLGFRAME);
end;
end.
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
type
TForm1 = class(TForm)
private
{ Private declarations }
procedure CreateParams(var Params: TCreateParams); override;
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.DFM}
procedure TForm1.CreateParams(var Params: TCreateParams);
begin
inherited CreatePArams (Params);
with Params do
style := (Style or WS_POPUP) and (not WS_DLGFRAME);
end;
end.
Another posts included in "Delphi"
| How To Make A Gradient Filled Form (0) | 2007/08/25 |
| How To Get The Windows Language (0) | 2007/08/25 |
| How To Change The Desktop Wallpaper (0) | 2007/08/25 |
| How To Send An E-mail By Code (0) | 2007/08/25 |
| How To Open Url In Default Webbrowser (0) | 2007/08/25 |
| How To Check If A Soundcard Is Installed (0) | 2007/08/25 |
| How To Change Screen Resolution (0) | 2007/08/25 |
| How To Force The Correct Decimal Separator (0) | 2007/08/25 |
Trackback : Cannot send a trackbact to this post.
-
Subject different money making ideas
2010/01/29 04:33
moneyideas
-
Subject different money making ideas
2010/01/29 13:14
moneyideas
-
Subject different money making ideas
2010/01/31 16:38
moneyideas

Prev

Rss Feed