Saturday, July 4, 2009

Windows Forms - Hide the display in task bar

To hide the display of windows Form in the task bar,

we need to set the ShowInTaskbar Property of Windows form to True in the entry point.

Example:

Public Sub New()

Me.ShowInTaskbar = False 'Hide the display in task bar

End Sub

No comments:

Post a Comment