BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Timer t = new Timer();
t.Interval = 50;
t.Tick += new EventHandler(t_Tick);
t.Enabled = true;
This in the tick event, do:
private void t_Tick(object sender, EventArgs e)
{
Timer t = sender as Timer;
t.Enabled = false;
t.Tick -= new EventHandler(t_Tick);
gridDataBoundGrid1.Focus();
gridDataBoundGrid1.CurrentCell.MoveTo((useFilterBar) ?2:1,1,GridSetCurrentCellOptions.ScrollInView);
}