Dear Friends ,
Any one can tell me why Notify Icon Not Working In Window Service. i do all require thing for that but still its not working.
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Kunal VaishyaPosted Nov 19, 2012, 8:12 AM
Shankar MPosted Nov 12, 2012, 5:39 AM
Try this, Code in the Form Load Event.
private void Form1_Load(object sender, EventArgs e)
{
notifyIcon1.ShowBalloonTip(1000);
}
Before that,
Place the NotifyIcon Control in the Form, and then Set it Properties,
BalloonTipIcon
BalloonTipTitle
BalloonTipText and
Icon Properties.
Hope the Problem, that you might not have got the NotifyIcon, as you might have missed to set the Icon Property to a Specified Icon.
Thanks,
Shankar