|
|
|
Event ของ datagridView ตัวไหนที่ไว้สำหรับ,,, คือ อยากทราบว่า event ของ datagridView ตัวไหนที่ไว้สำหรับกดเลือกโดยกดเลือกเป็นแถวน่ะค่ะ |
|
|
|
|
|
|
|
ใช้ CellMouseClick ก็ได้นะคะ
หรือ CellClick ค่ะ อันนี้ที่เราใช้อยู่ค่ะ
อาจเป็น Setting ค่าการ Select ก่อน Properties > SelectiontMode > FullRowSelect
หวังว่าจะช่วยได้นะคะ ^^
|
|
|
|
|
Date :
2010-01-23 17:25:48 |
By :
Kwang196 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากค่ะ
แล้วถ้าเกิดว่า จะให้ cell ที่เราเลือกไปแสดงในtextboxละค่ะ ต้องเขียนคำสั่งอย่างไรค่ะ
ฝากด้วยน่ะค่ะ
|
|
|
|
|
Date :
2010-01-23 17:35:40 |
By :
ling-keaw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (VB.NET)
ที่ต้องการจะวาง.Text = DataGrid_Ms.CurrentRow.Cells(ลำดับ).Value.ToString()
|
|
|
|
|
Date :
2010-01-23 17:41:48 |
By :
Kwang196 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เขียนแบบนี้รึป่าวค่ะ
for (int i = 0; i < ServicedataGrid.Rows.Count; i++)
{
customerNameTextbox.Text = ServiceDataGrid.Row[i].Cells["CustomerName"].Value.ToString();
carIDTextbox.Text = ServiceDatagrid.Row[i].Cells["CarID"].Value.ToString();
carBrandTexbox.Text = ServiceDatagrid.Row[i].Cells["CarBrand"].Value.ToString();
orderDateTextbox.Text = ServiceDatagrid.Row[i].Cells["OrderDate"].Value.ToString();
detailTextbox.text = ServiceDatagrid.Row[i].Cells["Detail"].Value.ToString();
}
|
|
|
|
|
Date :
2010-01-23 19:38:37 |
By :
far |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากค่ะ
|
|
|
|
|
Date :
2010-01-23 22:58:37 |
By :
ling-keaw |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|