G
Guy Cohen
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.
InitializeComponent()
End Sub
I entered into InitializeComponent and found:
' Do not modify it using the code editor.
Private Sub InitializeComponent()
components = New System.ComponentModel.Container()
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.
InitializeComponent()
End Sub
I entered into InitializeComponent and found:
' Do not modify it using the code editor.
Private Sub InitializeComponent()
components = New System.ComponentModel.Container()
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