Excuse my ignorance, as I'm still fairly new to VB.NET....
I want to hide my start up form while the form gathers some data from the users computer.
Why won't this work for hiding the form when the application loads?
I want to hide my start up form while the form gathers some data from the users computer.
Why won't this work for hiding the form when the application loads?
Code:
Private Sub frmResults_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Me.Hide()
End Sub