R
Rob Panosh
Hello,
I am trying to bind a text box with my derived class (listed below) using
the designer. I want to be able to add this class to my toolbox, drop onto
a form, and from the designer click on the textbox and bind the firstname
property of the customer class. Is this possible? Any help would be
greatly appreciated.
Thanks,
Rob Panosh
Sample Class
-------------
Class Customer
Private _FirstName As System.String
Public Property FirstName()
Get
Return Me._FirstName
End Get
Set(ByVal Value)
Me._FirstName = Value
End Set
End Property
Public Sub New()
End Sub
End Class
I am trying to bind a text box with my derived class (listed below) using
the designer. I want to be able to add this class to my toolbox, drop onto
a form, and from the designer click on the textbox and bind the firstname
property of the customer class. Is this possible? Any help would be
greatly appreciated.
Thanks,
Rob Panosh
Sample Class
-------------
Class Customer
Private _FirstName As System.String
Public Property FirstName()
Get
Return Me._FirstName
End Get
Set(ByVal Value)
Me._FirstName = Value
End Set
End Property
Public Sub New()
End Sub
End Class