why isn’t this.Hide() working in Form1_load event?

The Load event fires before the form is actually visible. Try using the Form.Shown event. This will fire when the form is actually painted on-screen.

Leave a Comment