You can enable the parent window using this:
private void Form_Activated(object sender, System.EventArgs e)
{
if (this.Owner != null)
{
this.Owner.Enabled = true;
}
}
Or use the following code to open your form:
Form newForm = new ChildForm();
newForm.Show(this);
--Amit