|
|
|
คลิกที่ Row DataGridview แล้วส่งค่ามายัง Form ใหม่ แล้วแสดงข้อมูล บน TextBox ครับ |
|
|
|
|
|
|
|
Code (C#)
private void DataGridView1_CellClick(object sender, System.Windows.Forms.DataGridViewCellEventArgs e)
{
int i = 0;
int j = 0;
i = DataGridView1.CurrentRow.Index;
TextBox1.Text = DataGridView1.Item(0, i).Value;
TextBox2.Text = DataGridView1.Item(1, i).Value;
TextBox3.Text = DataGridView1.Item(2, i).Value;
TextBox4.Text = DataGridView1.Item(3, i).Value;
}
|
|
|
|
|
Date :
2012-09-06 17:33:19 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|