[Delphi] create child form after registration TRUE
Posted: Thu Aug 28, 2014 5:06 am
Hi,
I have a multiform application.
What i want to do is, my main form can be opened normally without any enigma registration is active.
Until a user press a button that will call form 2. Is it possible ?
The code will be like this
BR
I have a multiform application.
What i want to do is, my main form can be opened normally without any enigma registration is active.
Until a user press a button that will call form 2. Is it possible ?
The code will be like this
Code: Select all
var Activation : Boolean;
...
...
if Activation = True then
begin
Application.CreateForm(TForm2, F2);
F2.Parent := Form1.panel1;
...