the following error arises
DataGridView1.Rows[0].cells[0].value="10"
when i give this command
Error BC30203 Identifier expected
DataGridView1.Rows(0).cells(0).value="10"
Most probably, VB is not the same as C type languages
In VB between square brackets means replacing keyword
Success
Cor