Code from Devasya C# datagridview Programming Software Development by krishnisilva …1); k++) { for (j = 0; j < (countCol); j++) { MessageBox.Show("j=" + j); MessageBox.…("" + dgvAList[j, k].Value); if ((j == (countCol - 1)) && (k == 1)) { data = … Re: Code from Devasya C# datagridview Programming Software Development by kvprajapati …; k < (countRow - 1); k++) { for (j = 0; j < (countCol); j++) { command.Parameters(j).Value=dgvAList[j, k].Value; } command… Re: Insert data from datagrid to access database Programming Software Development by Devasya …,100]; int countRow = dataGridView1.RowCount; int countCol = dataGridView1.ColumnCount; Console.WriteLine("row =…++) { for (j = 0; j < (countCol); j++) { Console.WriteLine("j=" + j… Re: how to validate a datetime column in the data grid view in C# Programming Software Development by krishnisilva …code] public void AddActions() { int countRow = dgvAList.RowCount; int countCol = dgvAList.ColumnCount; string[,] a = new string[100, 100];…data = "'"; for (int j = 0; j < (countCol); j++) { a[j, k] = string.Format("" + … Re: Insert data from datagrid to access database Programming Software Development by krishnisilva hey , in line 43: if( (j == (countCol - 1))&&(k == l)) what is l it is not defined?? and also i need to know what is this code for?? i am trying to figure it out but it is a little bit difficult. thankx