I am trying to do a NotifyIcon Balloon click in Windows 2000.
If have this:
VB Code:
Friend WithEvents TaskBarIcon As XPNotifyIcon.NotifyIcon Dim TaskBarIcon As New XPNotifyIcon.NotifyIcon Me.TaskBarIcon.ShowBalloon(XPNotifyIcon.NotifyIcon.EBalloonIcon.Info, "You have new alerts waiting." & vbCrLf & _ "Click balloon to view.", "201 Alerts", 1000) Private Sub TaskBarIcon_BalloonClick(ByVal sender As Object) Handles TaskBarIcon.BalloonClick Me.mnuItmAlerts.PerformClick() End Sub
it works fine, in XP, but does anyone know a similar way to do it in Windows 2000? I have limited internet access here at work, so this is my only hope while I am here.




Reply With Quote