(CodeLib-Manager)
Registriert seit: 10. Jun 2002
4.648 Beiträge
Delphi XE Professional
|
Re: Detect with injected DLL
15. Apr 2008, 20:16
Hello
property ShowMainForm: Boolean;
Description
Use ShowMainForm to control whether and when the application shows its main form.
The default value of True is set in the constructor. When ShowMainForm is True the main window shows automatically when the application starts. The MainForm property specifies which form is the main form.
To hide the main form at startup, set ShowMainForm to False in the main project file before the call to Application.Run. Make sure that the Visible property of the form is also False.
Thomas
|