Ejemplo 1: System.Windows.Forms.DataGridView.CurrentRow.get devolvió nulo. C#
if(datagridview1[1, dataGridView1.CurrentRow.Index].Value == null)
{
return;
}
Ejemplo 2: System.Windows.Forms.DataGridView.CurrentRow.get devolvió nulo. C#
if(dataGridView1.CurrentRow == null)
{
return;
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)