Delphi Source Code
Search engine
HOME Components Tutorials Add Trick Links Contacts
ActiveX Components Database Files Forms Graphic Internet/Lan Math Miscellaneous Multimedia Printing Strings System Information Windows

Delphi source code for Forms >> Hide the main form at startup


Category: Forms
Title: Hide the main form at startup
Date added: 15.03.2006
Hits: 3067


{
  Use the ShowMainForm property to control whether the application
  shows its main form on startup.
}


program Project1;
uses
  Forms,
  Unit1 in 'Unit1.pas'; {Form1}
{$R *.RES}
begin
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.ShowMainForm := False;
  Application.Run;
end.

Related Delphi Source Code:
Delphi Tricks
Delphi Tricks
For any problems or recommendations about Delphi Tricks site, please

feel free to contact us on that e-mail: support@delphitricks.com.
If you want to advertise on the site use that e-mail: advertise@delphitricks.com.

You can freely use or modify these Delphi source codes for non-commercial use. We are not responsible of any damages that can be caused by the utilisation of that source codes.

Copyright © 2006 AVSoftware Company. All rights reserved.