Due to project specifications, I need to build my application as Windows service. Also, I need to display a box where I must print every task the service is completing. Maybe, using WCF Service is too complicated for my needs. And I was thinking in WTSSendMessage
function.
Then, using WTSSendMessage
, is it possible to display a message box from a Windows Service and keep the box while its text is refreshing with the tasks that service is doing? Is that the right appproach to get something like that as Windows service?
Update: Seeing Ken's response, if it is possible in any way, I'd prefer to have only the Windows Service running whiout any client side.