728x90
int X1 = 0; int X2 = 0; int X3 = 0; int Row = 0; Row = dataGridView1.CurrentRow.Index; X1 = dataGridView1[0,Row].Value; X2 = dataGridView1[1,Row].Value; X3 = dataGridView1[2,Row].Value; MessageBox.Show("Values in the " + Row.ToString() + ". row : " + X1.ToString()+ " " + X2.ToString() + " " + X3.ToString(), "Values");
728x90
'C#' 카테고리의 다른 글
읽기 전용 필드에 바인딩된 datagridview (0) | 2014.06.29 |
---|---|
c# datagridview change current selected row (0) | 2014.06.28 |
c# numericupdown valuechanged 문제 (0) | 2014.06.28 |
c# datagridview에서 버튼 클릭 이벤트 (0) | 2014.06.28 |
c# string format (0) | 2014.06.27 |