I'm developing program perform multiple tasks in the loop, use 3rd party libraries. But when it's done a job, it automatically appears in front of screen, made me lose focus. How to disable auto appear? I've tried:
private void FrmMain_Activated(object sender, EventArgs e)
{
SendToBack();
}
But it was only after the program appear, bring it back to the rear. I want to prevent it bring to front from the firt. Please help me!