I have a .net form that is created in Excel (I don't know if that's relevant), and when I call form.Hide()
, Excel flickers briefly. If I instead call form.Close()
, the flicker is absent.
Why does the Hide()
version cause flicker, while the Close()
version not?