G
Guest
Is there a way to determine "I'm looking at the nth record in this datatable"
from a datarowview object?
Ex.
Dim drv As DataRowview
Dim dv As New DataView(MyDt, "recordID>=" & recordID.ToString,
"RecordID")
For each drv In dv
Console.Writeline("You are looking at the " & ???? " record.")
Next
from a datarowview object?
Ex.
Dim drv As DataRowview
Dim dv As New DataView(MyDt, "recordID>=" & recordID.ToString,
"RecordID")
For each drv In dv
Console.Writeline("You are looking at the " & ???? " record.")
Next