
02/04/2007, 14:41
|
 | Moderador | | Fecha de Ingreso: febrero-2002 Ubicación: México D.F
Mensajes: 8.004
Antigüedad: 23 años, 1 mes Puntos: 50 | |
Re: Recorrer ListBox inténtalo de ésta forma:
Código:
System.Data.DataRowView dr = null;
for (int i = 0; i<=ListBox.Items.Count -1; i++) {
dr = (System.Data.DataRowView)ListBox.Items[i];
MessageBox.Show(dr["Columna"].ToString());
}
Salu2 |