Inherits Windows.Forms.Form
Inherits System.ServiceProcess.ServiceBase
Protected Overrides Sub OnStart(ByVal args() As String)
'in here you put the code that tells the service what to do
End Sub
Protected Overrides Sub OnStop()
'tells the service what to do when it stops
End Sub