NotifyIcon ShowBalloonTip not appearing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an application that is made up of a single module for my global
variables and then multiple classes. There is no form. I am using a
notifyicon as my notification(Basically different colored icons). All
functions for the notifyicon work great except for the showballoontip.
I have configured it many ways, but basically I want:
nIcon.ShowBalloonTip(1000, "Balloon tip!", "This is a balloon tooltip
from a NotifyIcon", ToolTipIcon.Info) to appear as a balloon tip.

I have one thread that sleeps, and I have tried to set the balloon tip
inside the thread and outside.

The notifyicon is declared within the module since it is accessed by
multiple classes:
Public WithEvents nIcon As New NotifyIcon

I also have added a handler so I can handle click events:
AddHandler nIcon.MouseDown, AddressOf nIcon_Click

Any ideas of why this one simple line of code would not be working?
 
Back
Top