R
R3al1ty
Hi folks, I have a small modal form in front of a big form. How do i
cleanly hide the small modal form? Currently, when i do
smallForm.Hide(), the bigForm area that was under the smallForm
refreshes in bits and pieces.
mainForm.Show()
smallForm.ShowDialog()
smallForm.Hide()
// ugly refreshing
Is there a combination of either ControlStyles settings or
Refresh/Invalidate/SuspendLayout etc that can be inserted into the
above order that can give a smooth Hide(). I just want it to dissapear
cleanly.
Thanks!
cleanly hide the small modal form? Currently, when i do
smallForm.Hide(), the bigForm area that was under the smallForm
refreshes in bits and pieces.
mainForm.Show()
smallForm.ShowDialog()
smallForm.Hide()
// ugly refreshing
Is there a combination of either ControlStyles settings or
Refresh/Invalidate/SuspendLayout etc that can be inserted into the
above order that can give a smooth Hide(). I just want it to dissapear
cleanly.
Thanks!