Windows Service with Msgbox/Form

  • Thread starter Thread starter Richard
  • Start date Start date
R

Richard

Hi Gurus,
Is it possible to fire Msgbox or a Form from a Windows Service. I'll
appreciate your help.

Thanks in advance.
Richard
 
Richard said:
Hi Gurus,
Is it possible to fire Msgbox or a Form from a Windows Service. I'll
appreciate your help.

Thanks in advance.
Richard

Services are NOT supposed to have User intervention required (ie: from
MsgBox's) as they are normally running when a user is logged off. You
should therefore log errors or messages for the user somewhere else (ie:
a log file or database etc).

The user should then run a second program to check these messages (ie:
run from the Start-Up folder).

Kind Regards,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top