|
-
May 3rd, 2007, 05:58 AM
#1
Thread Starter
Addicted Member
creating notifyicon in windows service
hi to all,
i want to create the notify icon in the service. i was created notify icon using the following code.
private NotifyIcon notifyIcon1 = new NotifyIcon();
this.notifyIcon1.Text = "DataBaseIntegrator";
this.notifyIcon1.Icon = ApplicationIcon;
this.notifyIcon1.Visible = true;
this.notifyIcon1.ShowBalloonTip(3000, "Service", "Service Started", ToolTipIcon.Info);
but its not working properly.what is the problem in the coding. plz help me to solve the problem.
thank u
with thanks and regards
mmary
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|