Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/04/2016, 09:10
Avatar de giovani_loera
giovani_loera
 
Fecha de Ingreso: mayo-2011
Ubicación: Tijuana
Mensajes: 225
Antigüedad: 13 años
Puntos: 21
Respuesta: Vb.Net Datagridview columna tipo chekbox

Hola

Yo tengo el codigo en c#

Código C#:
Ver original
  1. for (int i = 0; i < gvList.Rows.Count; i++)
  2. {
  3.    if (((CheckBox)gvList.Rows[i].FindControl("cbSelect")).Checked)
  4.    {
  5.    }
  6. }