Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Delete row in dataview
Message
De
09/09/2005 17:21:33
 
Information générale
Forum:
ASP.NET
Catégorie:
Code, syntaxe and commandes
Divers
Thread ID:
01048268
Message ID:
01048309
Vues:
18
This message has been marked as the solution to the initial question of the thread.
You need to do it in reverse order, so you'll need to iterate with for rather than use foreach:
DataRowView drv;
for(int i= goView.Count-1; i >=0; i--)
{
    drv = goView[i];

    if (drv["userid"].ToString().Equals("DSMI"))
    {
        drv.Row.Delete();
    }
    else
    {
        drv["userid"] = drv["userid"].ToString() + "Kretek";
    }
}
~~Bonnie


>I had tried that, I got there is no row at position 134. Same error as doing it the other way. Do I need to accept the changes, is that why its giving me an error.
Bonnie Berent DeWitt
NET/C# MVP since 2003

http://geek-goddess-bonnie.blogspot.com
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform