Just create a dataview on the dataset
[VB]
Dim dv As DataView
dv = New DataView()
With dv
.Table = Dataset_PAM1.PAM
.AllowDelete = True
.AllowEdit = True
.AllowNew = True
End With
dv.RowFilter = "TicketID = " & TextBox5.Text & " "
[/VB]
databind to that dv...etc..
How do changes on the DataView as they are deletions or textchanges take ffect on the source = Dataset ??
Are they taken over directly or do I have to link actions on the DataView to the Dataset ???
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.