I have a couple of other forms floating around the MainForm
for I := 1 to UserCount then
tempform:= TCustomFrm.Create(self);
and I want them to be dependent on the MainForm, meaning when I minimize the MainForm they're also minimized, and then I maximize the MainForm the other forms are also maximized.
I also want them to be positioned within the MainForm, though I do think I can already do that. Is there a way to do that?