BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
bool isInQueryRowCount = false; private void gridControl1_QueryRowCount(object sender, GridRowColCountEventArgs e) { GridCurrentCell cc = this.gridControl1.CurrentCell; if(cc.RowIndex > rowCount && !isInQueryRowCount) { isInQueryRowCount = true; cc.MoveTo(rowCount, cc.ColIndex); isInQueryRowCount = false; } e.Count = rowCount; e.Handled = true; }