NotifyIcon1.ShowBalloonTip() has a huge delay for me,
I will click the 'minimize' button, and my program's visibility is set to false, and then the balloon should show, but it doesn't happen at all most of the time... and sometimes it works properly, and then sometimes it takes 5-10 seconds...
My code:
vb.net Code:
Private Sub MinimizeButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MinimizeButton.Click NotifyIcon1.ShowBalloonTip(5000) Application.DoEvents() Me.Visible = False End Sub




Reply With Quote