How is it possible to tell the program to automatic minimize to the taskbar

Rexy

Member
Joined
Jan 16, 2007
Messages
14
Programming Experience
1-3
I build a program, there starts when windows(xp) start.

How is it possible to tell the program to automatic minimize to the taskbar..

vb.studio.net 2005

Kind Regards Jan
 
VB.NET:
	Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) _
	Handles MyBase.Load

		Me.WindowState = FormWindowState.Minimized

	End Sub
 
Back
Top