PDA

View Full Version : Question about windows services programming with c#


csbxueyu
04-08-2005, 10:49 PM
How to open a form at the service start?
(请问如果希望在编写的一个windows服务开始运行的时候打开一个窗口该怎样编写? )

maro25
11-10-2005, 06:49 AM
In order to show something to the user using a service, you need to make the service interactive

Andric
09-08-2006, 09:20 PM
shouldnt try and make a service have any user interface. ServiceController shoudl be used to make a seprate programme that can interact with a service though - I spose its possible for the service to invoke that on start up but its horribly bad practice,