Hey chaps,

I've got a form (called frmPop) and as one of it's members theres a form called frmTest. I want to show frmtTest under certain conditions but it wont show ??

Any help please ?

Code:
frmT = new frmTest();
frmT.TopLevel = false;
frmT.Parent = this;

	if (dbx.sysVars.Testmode > 0)
	{ 		
					
		frmT.Show();					
	}
Thanks alot.

Chubby.