Quote:
|
Goes to the task bar and double clicking on the ICON doesn't do anything.
|
Try this, click the icon once...
private void notifyIcon1_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
{
Show();
WindowState = FormWindowState.Normal;
}
Quote:
|
Cant remember how to do a time function for what I want to do.
|
Drag a Timer control to the main form, enable it, then change the interval for the time frame you want.
private void timer1_Tick(object sender, System.EventArgs e)
{
// Do something at this specific interval
}
There is probably something better than PlaySound() to use... I'll look around later.