i still new in using Viusal Studio 2005..
How to insert data using datagridview control
Collapse
X
-
Tags: None
-
Originally posted by christine0207i still new in using Viusal Studio 2005..
//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();
MessageBox.Show (msg, "Current Cell");
Comment