notifyIcon

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • velsunitha
    New Member
    • Oct 2008
    • 2

    notifyIcon

    Hi
    can anyone give me a project to display the no of tickets raised by the tool using hte notify icon

    great help
  • joedeene
    Contributor
    • Jul 2008
    • 579

    #2
    Something like this will work when the mouse is hovering the Notify Icon.

    You just need to set your integer value('numberof tickets') to the number of tickets there are, and so this should get you started.

    Code:
     private void notifyIcon1_MouseMove(object sender, MouseEventArgs e)
            {
                int numberoftickets = 0;
                notifyIcon1.Text = numberoftickets.ToString();
            }
    joedeene

    Comment

    Working...