Application.Run / Windows Service ?

G

Guest

Hi,

Use tge service controller class

Dim s As System.ServiceProcess.ServiceController

For Each s In System.ServiceProcess.ServiceController.GetServices
If s.ServiceName = "MSSQLSERVER" Then
If s.Status = ServiceProcess.ServiceControllerStatus.Stopped
Then s.Start()
End If
's.Stop to stop
's.Start to start
's.Pause to pause
Next

Ken
 
P

Phill W.

Jay said:
What is the replacement for Application.Run in a Windows Service?

ServiceBase.Run

Depending on what version of 'Studio you have, you may already have a
Project Template for a Windows Service.

HTH,
Phill W.
 

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

Top