T
teo
I previously put a Dataview in the Cache
Me.Cache.Insert("myDVname", DV)
Now I retrieve it
Dim DV As DataView = Me.Cache("myDVname")
and populated a ListBox
All is ok.
Now I want to remove the 5th row.
(then put it again in the Cache)
But this
DV.AllowDelete = True
DV.Delete(5)
doesn't work.
- - - - -
How can I cut off a row
from the Dataview?
Me.Cache.Insert("myDVname", DV)
Now I retrieve it
Dim DV As DataView = Me.Cache("myDVname")
and populated a ListBox
All is ok.
Now I want to remove the 5th row.
(then put it again in the Cache)
But this
DV.AllowDelete = True
DV.Delete(5)
doesn't work.
- - - - -
How can I cut off a row
from the Dataview?