in the code below a show the notificationballoon every time i recive an email, now I want to a menu (when I right click on the notification icon).
can some one help me with this pls
'this method is used for populate data from the database and pop up the notification tool
Private Sub populatedata()
Me.Rsp_populatecountTableAdapter1.Fill(Me.MailServicesDataSet2.rsp_populatecount)
If pendingemailresults.Text = "0" Then
'label()
NotifyIcon1.Visible =
False
Else
Me.Rsp_populatecountTableAdapter1.Fill(Me.MailServicesDataSet2.rsp_populatecount)
NotifyIcon1.Visible =
True
NotifyIcon1.BalloonTipIcon = ToolTipIcon.Info
NotifyIcon1.BalloonTipTitle =
"Pending Email/s:"
NotifyIcon1.BalloonTipText =
"You have " + pendingemailresults.Text + " pending email/s"
NotifyIcon1.ShowBalloonTip(6000)
My.Computer.Audio.Play("c:\WINDOWS\MEDIA\Notify.wav", AudioPlayMode.WaitToComplete)
'label()
End If
End Sub