I have a weird problem. Whenever i call my second form the first one doesn't pause
private void bHelp_Click(object sender, EventArgs e)
{
Help helpMenu = new Help(this);
helpMenu.ShowDialog();
}
i have a progress bar and some timers which keep ticking while Help
is still being shown. If this is not the way to pause the form anyway how can i do it ?
Im currently pausing all the timers in order to make it look like pausing