ASKER
ASKER
ASKER
ASKER
private void iddgDispatchList_CellMouseDown(object sender, DataGridViewCellMouseEventArgs e)
{
if (e.Button == MouseButtons.Right)
iddgDispatchList.CurrentCell = iddgDispatchList.Rows[e.RowIndex].Cells[e.ColumnIndex];
}
C# is an object-oriented programming language created in conjunction with Microsoft’s .NET framework. Compilation is usually done into the Microsoft Intermediate Language (MSIL), which is then JIT-compiled to native code (and cached) during execution in the Common Language Runtime (CLR).
TRUSTED BY
Why not just bind the grid to a dataset ,that way you get Insert, Edit and Delete functionallity in the grid.
When done , just update the modifications to the datasource.
vbturbo