1
I solved with the following code, in addition to changing the Windowstate of wsMaximized for wsNormal and the Position for poDefaultPosOnly.
UniForm1.Width := UniPanel1.Width;
UniForm1.Height := UniPanel1.Height;
1
1
I solved with the following code, in addition to changing the Windowstate of wsMaximized for wsNormal and the Position for poDefaultPosOnly.
UniForm1.Width := UniPanel1.Width;
UniForm1.Height := UniPanel1.Height;
0
If you use a Frame instead of a Form you can do what you want.
tuaFrame:=TUniFrame1.Create(self);
tuaFrame.Parent:=teuPainel;
tuaFrame.Align:=alclient;
tuaFrame.Visible:=true;
Browser other questions tagged delphi
You are not signed in. Login or sign up in order to post.
Try setting the form property
Position
forpoOwnerFormCenter
– Junior Moreira
It made no difference...
– user75204