|
|
|
สอบถามการเลือกข้อมูลใน Data gridview ขึ้นมาโชว์ ใน Textbox ซึ่งข้อมูลขึ้นแล้ว แต่เวลากดที่ช่องว่าใน gridview แล้ว Eror |
|
|
|
|
|
|
|
Code (C#)
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
if (e.RowIndex >= 0)
{
DataGridViewRow row = this.dataGridView1.Rows[e.RowIndex];
txtCardID.Text = row.Cells["CardID"].Value.ToString();
txtName.Text = row.Cells["Name"].Value.ToString();
txtCompanyName.Text = row.Cells["CompanyName"].Value.ToString();
}
}
|
|
|
|
|
Date :
2015-08-21 08:54:39 |
By :
ipstarone |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (C#)
private void dataGridView1_CellEnter(object sender, DataGridViewCellEventArgs e)
{
if (dataGridView1[0, e.RowIndex].Value.ToString().Length >0)
{
txtCardID.Text = dataGridView1[0,e.RowIndex].Value.ToString();
txtName.Text = dataGridView1[1, e.RowIndex].Value.ToString();
txtCompanyName.Text = dataGridView1[2, e.RowIndex].Value.ToString();
}
}
CellEnter รองรับ แป้นพิมด้วยครับเผื่อ user ถนัด กด ครับ 5555
|
|
|
|
|
Date :
2015-08-21 10:03:19 |
By :
lamaka.tor |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณพี่ทั้งสองคนมากเลยครับ
|
|
|
|
|
Date :
2015-08-21 11:55:26 |
By :
issaratae |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|