Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to Loop through a dataview
Message
General information
Forum:
ASP.NET
Category:
Visual FoxPro Toolkit for .NET
Miscellaneous
Thread ID:
00805318
Message ID:
00805682
Views:
19
This message has been marked as the solution to the initial question of the thread.
Here is an example:
  foreach (DataRowView myDRV in myDataView)
  {
    for (int i = 0; i < myView.Table.Columns.Count; i++)
      Console.Write(myDRV[i] + "\t");
    Console.WriteLine();
  }
>Once I get a dataview using the toolkit, how do I loop through the records?
>
>Thanks
>Kirk
- Jayesh
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform