TRY THIS FOR STARTS IN c#. LITTLE MODIFICATION IF ANY FOR THE OTHERS
//get cell
grid1.CurrentCe ll = grid1[1, 0];
String msg = grid1.CurrentCe ll.Value.ToStri ng();
MessageBox.Show (msg, "Current Cell");
//set cell
grid1.CurrentCe ll.Value = "try this";
msg = grid1.CurrentCe ll.Value.ToStri ng();...
Leave a comment: