Hi all
I just wrote a service using vb2005 - service name MyFirstService
I noticed that in the sub New() of the service class I have:
Public Sub New()
' This call is required by the Windows Form Designer.
InitializeCompo nent()
End Sub
I entered into InitializeCompo nent and found:
' Do not modify it using the code editor.
Private Sub InitializeCompo nent()
components = New System.Componen tModel.Containe r()
Me.ServiceName = "Service1"
End Sub
But the service name is not service1
Whats wrong here? who named the service name as Service1
TIA
Guy Cohen
I just wrote a service using vb2005 - service name MyFirstService
I noticed that in the sub New() of the service class I have:
Public Sub New()
' This call is required by the Windows Form Designer.
InitializeCompo nent()
End Sub
I entered into InitializeCompo nent and found:
' Do not modify it using the code editor.
Private Sub InitializeCompo nent()
components = New System.Componen tModel.Containe r()
Me.ServiceName = "Service1"
End Sub
But the service name is not service1
Whats wrong here? who named the service name as Service1
TIA
Guy Cohen
Comment