--> Tricks to hide the main form when the application runs. | Delphi Tips Trick

For Newbie

Tuesday 15 November 2011

Tricks to hide the main form when the application runs.

| Tuesday 15 November 2011


Edit the project source (Select the menu View - Project Source), add lines of code:
Application.ShowMainForm: = False;

Full as follows:
begin
   Application.Initialize;
   Application.ShowMainForm: = False;
   Application.CreateForm (TForm1, Form1);
   Application.Run;
end.

Related Posts

No comments: