G
Guest
hey all,
so far the following is the only way i know how to iterate thru my
TypedDataSet.Table.DefaultView:
Private Sub FixDs()
For Each row As System.Data.DataRowView In svDs.HRFV0025.DefaultView
If Not IsDBNull(row("OAST")) Then
If row("OAST") = 4 Then
row("CHKBOX") = False
End If
End If
Next
End Sub
However, as you can see i can take advantage of the TypedRows. Any ideas, or
is this all i got to work with?
thanks,
rodchar
so far the following is the only way i know how to iterate thru my
TypedDataSet.Table.DefaultView:
Private Sub FixDs()
For Each row As System.Data.DataRowView In svDs.HRFV0025.DefaultView
If Not IsDBNull(row("OAST")) Then
If row("OAST") = 4 Then
row("CHKBOX") = False
End If
End If
Next
End Sub
However, as you can see i can take advantage of the TypedRows. Any ideas, or
is this all i got to work with?
thanks,
rodchar