Zexor
Well-known member
- Joined
- Nov 28, 2008
- Messages
- 520
- Programming Experience
- 3-5
I have a dataset ds, and i want the btSave become enable everytime it changes.
I guess this doesnt work. When i add a table to dsvalue, it doesnt seem to goto the set.
it seem to only access the Get command when adding the table
VB.NET:
Dim ds As DataSet
Public Property dsValue() As DataSet
Get
Return ds
End Get
Set(ByVal value As DataSet)
ds = value
btSave.Enabled = True
End Set
End Property
VB.NET:
dsValue.Tables.Add(newTable)
it seem to only access the Get command when adding the table