Hi,
Dim s As System.ServiceProcess.ServiceController
For Each s In System.ServiceProcess.ServiceController.GetDevices
Dim strOut As String = String.Format("{0} {1} {2}", s.ServiceName, s.Status,
s.ServiceType)
Trace.WriteLine(strOut)
Next
Ken
-----------------------
"SQLScott" <(E-Mail Removed)> wrote in message
news

A5AA71E-6C5D-473E-8399-(E-Mail Removed)...
I have a VB6 app that uses API calls to check that status of certain
Services. I am converting this app to VB.Net and wondering how to
accomplish
this same functionality in VB.Net.
Any ideas?
--
Thanks,
Scott