02-27-2010, 09:26 PM
(02-27-2010, 08:32 PM)Extasey Wrote: You can do a few things, click on your form and change some of these settings.
Window State: Minimized (will start minimized)
Show in Taskbar: Flase (removes icon from taskbar)
Opacity: 0%
That should hide it.
Ohhhh, I get it. Wouldn't this work:
Code:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.Hide()
End Sub