I have code for showing text notification. How can I create voice/sound notification?
notifyIcon1.Icon = new System.Drawing.Icon(Path.GetFullPath(@"image\not.ico"));
notifyIcon1.Text = "Application Notification";
notifyIcon1.Visible = true;
notifyIcon1.BalloonTipTitle = "Hi";
notifyIcon1.BalloonTipText = "Click Here to see details";
notifyIcon1.ShowBalloonTip(100);