I am trying to do a NotifyIcon Balloon click in Windows 2000.

If have this:
VB Code:
  1. Friend WithEvents TaskBarIcon As XPNotifyIcon.NotifyIcon
  2. Dim TaskBarIcon As New XPNotifyIcon.NotifyIcon
  3.  
  4. Me.TaskBarIcon.ShowBalloon(XPNotifyIcon.NotifyIcon.EBalloonIcon.Info, "You have new alerts waiting." & vbCrLf & _
  5.                 "Click balloon to view.", "201 Alerts", 1000)
  6.  
  7.   Private Sub TaskBarIcon_BalloonClick(ByVal sender As Object) Handles TaskBarIcon.BalloonClick
  8.         Me.mnuItmAlerts.PerformClick()
  9.     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.