BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void gridDataBoundGrid1_QueryNextCurrentCellPosition(object sender, GridQueryNextCurrentCellPositionEventArgs e) { GridCurrentCell cc = this.gridDataBoundGrid1.CurrentCell; if(cc.Renderer.ControlText == "1" && e.ColIndex == this.gridDataBoundGrid1.Model.ColCount + 1 && e.RowIndex == this.gridDataBoundGrid1.Model.RowCount ) { //move it back a column cc.MoveTo(e.RowIndex, e.ColIndex - 2); e.Handled = true; e.Result = false; } }