Error 6 Too many arguments to 'Public Sub New()'.
Dim objController As New ServiceController("spooler")
http://msdn.microsof*****m/en-us/library/system.serviceprocess.servicecontroller.aspx
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
Dim objController As New ServiceController() '' put in service here ("")
If objController.Status = ServiceControllerStatus.Running Then
objController.Stop()
End If
Button2.Hide()
Button3.Show()
End Sub