Mega Code Archive

 
Categories / Delphi / Forms
 

Hide main form of the application

Title: 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.