Advertisement
Advertisement
| 05.07.2008 at 09:26PM PDT, ID: 23385071 | Points: 500 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: |
private void vendors_DGV_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
int column = vendors_DGV.CurrentCellAddress.X;
int row = vendors_DGV.CurrentCellAddress.Y;
string fieldName = vendors_DGV.Columns[column].HeaderText;
if (vendors_DGV.Rows[row].Cells[0].Value == null) { return; }
string companyName = vendors_DGV.Rows[row].Cells[0].Value.ToString();
var updateV = from vend in vendors where vend.CompanyName == companyName select vend;
MainForm.dc.SubmitChanges();
}
|
| Microsoft |
| Apple |
| Internet |
| Gamers |
| Digital Living |
| Virus & Spyware |
| Hardware |
| Software |
| ITPro |
| Developer |
| Storage |
| OS |
| Database |
| Security |
| Programming |
| Web Development |
| Networking |
| Other |
| Community Support |