Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

User Control

2 views
Skip to first unread message

Derek Hart

unread,
Jun 28, 2009, 7:16:32 PM6/28/09
to

Built a user control based off a textbox and am adding properties of my own.
I want to be able to change Name property itself. Is is possible? I choose
another custom made property, and all the items are unique, so I would like
to then change the Name property. Is it only changeable by typing in the
grid?

Public Property DataField() As String
Get
Return _DataField
End Get
Set(ByVal value As String)
_DataField = value
Me.Name = value
End Set
End Property


0 new messages