I have an application that is a part of a solution of projects. In this project I would like for it to start up form to be invisible, but still have a notification icon in t
Use Me.Opacity = 0 to hide the form on load event.
Me.Opacity = 0
Then use the following code in the form.Shown event
Me.Hide() Me.Opacity = 100