how to Systemtray notification
-
thanks u.i want that it can auto notify by birthday.
-
thanks u.i want that it can auto notify by birthday.
-
Then you must have a checking function 1 time / day. If birthday == DateTime.Now, then show notifyIcon.
sorry, i forgate to tell u that, my program is not run all time.. so how it possible.help me.
-
sorry, i forgate to tell u that, my program is not run all time.. so how it possible.help me.
-
If your program is not running, then it is impossible to show notify icon. Just like outlook. If your outlook not running, then you cannot get message whether you get a new message or not.
how can i run a process when windows is start.thank for help.
-
how can i run a process when windows is start.thank for help.
-
Use System.Diagnostics.Process.Start(string filename); for example : System.Diagnostics.Process.Start(@"C:\WINNT\NOTEPAD.EXE");
-
sorry here windows means operating system. so how can i run my program when os start.thanks.
You must copy your application to this directory : C:\Documents and Settings\All Users\Start Menu\Programs\Startup That directory is for all users. If you want to specific user only, then you must change "All User" to other user, for example (MyAccount): C:\Documents and Settings\MyAccount\Start Menu\Programs\Startup
-
You must copy your application to this directory : C:\Documents and Settings\All Users\Start Menu\Programs\Startup That directory is for all users. If you want to specific user only, then you must change "All User" to other user, for example (MyAccount): C:\Documents and Settings\MyAccount\Start Menu\Programs\Startup
can i use windows service for that.thankxs.
-
You must copy your application to this directory : C:\Documents and Settings\All Users\Start Menu\Programs\Startup That directory is for all users. If you want to specific user only, then you must change "All User" to other user, for example (MyAccount): C:\Documents and Settings\MyAccount\Start Menu\Programs\Startup
can i use windows service for that than how. thanks.
-
can i use windows service for that than how. thanks.
-
It depends on your application. If you application is a service, then you must install it in services, set to automatic, then if you start your windows, it will be started automatically. But I don't know how to install a service. Sorry.
thanks a lot.he happy.