Link to home
Start Free TrialLog in
Avatar of Imbeginner
Imbeginner

asked on

How can disable special formcreate at startup?

Hi,
I have 4 forms  in my program ,one form in not  for users it is for administrator
For it I don’t want create this form in starting program.
How can disable this form at startup  and activate it when administrator needed?

Thanks in advance
m.reza
Avatar of DaFox
DaFox

Hi.

Project -> Options -> Forms ... and switch your desired form from the right to the left box

Markus
Remember when you do this that when you want to use the admin form you will have to create it first.

adminForm := TadminForm.Create(AOwner);
adminform.show;
ASKER CERTIFIED SOLUTION
Avatar of rl912
rl912

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Imbeginner

ASKER

thanks for your answer.