I am learning components in vb by following http://msdn.microsoft.com/en-us/library/151w6x12(v=VS.100).aspx
Everything works exactly as tutorial until adding code for the constructor. There is no Sub New in my added component in CDemo.vb. I found Sub New in CDemo.Designer.vb (which I think is generated by system).
<System.Diagnostics.DebuggerNonUserCode()> _
Public Sub New()
MyBase.New()
'This call is required by the Component Designer.
InitializeComponent()
End Sub
If I add sub New in CDemo.vb as follows,it has error BC30269: 'Public Sub New()' has multiple definitions with identical signatures.
Public Class CDemo
Public ReadOnly InstanceID As Integer
Private Shared NextInstanceID As Integer = 0
Private Shared ClassInstanceCount As Long = 0
Sub New()
InstanceID = NextInstanceID
NextInstanceID += 1
ClassInstanceCount += 1
End Sub
End Class
But if I do not add sub New in CDemo.vb, instead add code in CDemo.Designer.vb, it says project cannot start directly.
<System.Diagnostics.DebuggerNonUserCode()> _
Public Sub New()
MyBase.New()
InstanceID = NextInstanceID
NextInstanceID += 1
ClassInstanceCount += 1
'This call is required by the Component Designer.
InitializeComponent()
End Sub
I do not understand what is CDemo.Designer.vb and where should I add my own code? For beginner, I find it hard to distinguish system generated code and my code.