Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to Loop through a dataview
Message
Information générale
Forum:
ASP.NET
Catégorie:
Visual FoxPro Toolkit pour .NET
Divers
Thread ID:
00805318
Message ID:
00805682
Vues:
18
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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform