B
Bruce A. Julseth
I'm trying to create a "RowUpdated" event.
I have
Dim da As New SqlDataAdapter()
and
Dim dst As New DataSet()
declared as a globals.
I have the event handler defined as
Private Sub da_RowUpdated(ByVal sender As Object, ByVal e As
SqlRowUpdatedEventArgs)
In my Load procedure, I have
AddHandler da.RowUpdated, AddressOf da_RowUpdated
In my Save procedure, I have
dst.Tables("MyTable").Rows.Add(drRow)
I would expect this statement to fire the da.RowUpdated event.
What am I missing?
Thanks....
I have
Dim da As New SqlDataAdapter()
and
Dim dst As New DataSet()
declared as a globals.
I have the event handler defined as
Private Sub da_RowUpdated(ByVal sender As Object, ByVal e As
SqlRowUpdatedEventArgs)
In my Load procedure, I have
AddHandler da.RowUpdated, AddressOf da_RowUpdated
In my Save procedure, I have
dst.Tables("MyTable").Rows.Add(drRow)
I would expect this statement to fire the da.RowUpdated event.
What am I missing?
Thanks....