How does the FindBy Method ??

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 ???
 
a dataview is just another way to look at the table its based on.
changes in the dv ARE changes in the table...
 
Back
Top