.NET 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