End Google Ads 201810 - BS.net 01 --> Hi

I have a dialog form that has validation in it. If things are invalid, another window appears with the list of errors that they can double click on and be taken to the point of the error.

What I would like to do is not have this error window appear in the taskbar and have the window appear when the main dialog regains focus.

I've looked arround and tried this

private void Form1_Activated(object sender, EventArgs e)
{
if (newErrorForm != null)
{
newErrorForm.BringToFront();
this.Focus();
}
}

but this causes the error window to always have focus even though I'm shifting it back to the main form. Is there a way to achieve this?

Many ThanksThe FoZ