1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| if (SortResult != null)
{
DataGridViewColumn clx = DgvResults.Columns[SortResult.SortColumn];
DgvResults.Sort(clx, SortResult.Direction);
SortResult = null;
}
if (curInscrIDRes > -1)
{
int a=ToolsForForms.DgvSetRow(DgvResults, "InscrId", curInscrIDRes);
if (a > -1)
{
DgvResults.FirstDisplayedScrollingRowIndex = a;
DgvResults.Refresh();
DgvResults.CurrentCell = DgvResults.Rows[a].Cells[0];
DgvResults.Rows[a].Selected = true;
DgvResults.FirstDisplayedScrollingRowIndex = a;
DgvResults.CurrentCell = DgvResults.Rows[a].Cells[0];
}
curInscrIDRes = -1;
} |
Partager