delphi hide the main window to start the program

delphi launcher hide the main window
 Program Project1; 

uses 
Forms, 
Unit1 in  ' Unit1.pas '  { the Form1 } ; 

{ $ R & lt * .res } 

the begin 
Application.Initialize; 
Application.CreateForm (TForm1, the Form1); 
Application.ShowMainForm: = False; 
Application.Run; 
End .

 

Guess you like

Origin www.cnblogs.com/jijm123/p/12602697.html