New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.private void gridDataBoundGrid1_RowsDeleting(object sender, GridRowRangeEventArgs e) { if(MessageBox.Show("Delete? ", "", MessageBoxButtons.YesNo) == DialogResult.No) e.Cancel = true; }
>private void gridDataBoundGrid1_RowsDeleting(object sender, GridRowRangeEventArgs e) >{ > if(MessageBox.Show("Delete? ", "", MessageBoxButtons.YesNo) == DialogResult.No) > e.Cancel = true; >} >
int position = this.grid.Binder.RowIndexToPosition(gridRowIndex);
to map a grid row index to a position in teh datasource.
>int position = this.grid.Binder.RowIndexToPosition(gridRowIndex);
>
>to map a grid row index to a position in teh datasource.