Hi,
I am wondering if it is possible to iterate using columns of datatable.
thanks
I have tried something like this:
Code:Dim myCol As New DataColumn Dim myRow As DataRow = Nothing Dim myCell As New DataGridCell For Each myCol In myDt1.Columns For Each myCell In myCol MsgBox(myCell.ToString) Next Next




Reply With Quote