Tuesday, 15 November 2011
Home »
Tips and Trick Delphi
» Tricks to hide the main form when the application runs.
Tricks to hide the main form when the application runs.
To Share | 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.
No comments:
Post a Comment