View Single Post
Old Dec 22nd, 2006, 8:34 AM   #14
Infinite Recursion
Programming Guru
 
Infinite Recursion's Avatar
 
Join Date: Jul 2004
Location: United States
Posts: 3,467
Rep Power: 8 Infinite Recursion is on a distinguished road
Send a message via MSN to Infinite Recursion Send a message via Yahoo to Infinite Recursion
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.
__________________
http://jasonpowers.net

"There are a thousand hacking at the branches of evil to one who is striking at the root."
Infinite Recursion is offline   Reply With Quote