In the tray, multiple icons appear during the course of the program running. I'm not sure why. I currently have this code:
Public Sub ShowBalloonTip(ByVal Text As String, ByVal Title As String)
niMain.Visible = False
niMain.BalloonTipText = Text
niMain.BalloonTipTitle = Title
niMain.BalloonTipIcon = ToolTipIcon.Info
niMain.Visible = True
niMain.ShowBalloonTip(1000)
End Sub
And when the form is being closed, I set the object to not being visible.
What can I do to solve this?