|
Hide main form of the application
Use for this ShowMainForm property of TApplication class in your project file.
program Project1;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.ShowMainForm:=False;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
- Related chapters
-
Forms
- Related topics
-
Hide forms and taskbar button
Hide the form caption bar
- For more
-
Delphi Help
- Download source
|