I have a MDI form where I load multiple forms as needed. One of the Children is a main working form. Other minor forms can be called from the main working form. The problem is when the minor forms are closed the main working form does not refresh, redraw or repaint. It looks all messed up.
So far I've tried in the closing event of the minor forms:
and minimizing and normalizing the form to reset it...
Any ideas??
So far I've tried in the closing event of the minor forms:
Code:
mainform.Refresh
and minimizing and normalizing the form to reset it...
Code:
mainfrom.WindowState = FormWindowState.Minimized
mainform.WindowState = FormWindowState.Normal
Any ideas??