This is my first topic
In the same application:
I Have a NormalForm (Mainform), that in a Popupmenu call's MDIForm like this:
MDIForm:=TMDIForm.Create(nil);
MDIForm.Show;
The forms open correctly... Now, in the MDI form i try to create MDIChild with:
fm := TMDIChild.Create(Self);
fm.FormStyle:=fsMDIChild;
fm.Show;
Retrieve the error: Cannot Create Form. No MDI Forms are currently active
Anyone knows how do that?!