T
Tim Wilson
I assume that you're talking about a painting issue where you can still see
the dialog because the application hasn't had a chance to repaint yet. Try
calling Application.DoEvents() right after the ShowDialog() method call. But
if you don't need the dialog, then you might want to Dispose() of it first
and then call Application.DoEvents().
the dialog because the application hasn't had a chance to repaint yet. Try
calling Application.DoEvents() right after the ShowDialog() method call. But
if you don't need the dialog, then you might want to Dispose() of it first
and then call Application.DoEvents().