If this is not the best practice, I'm sure I will be corrected, but try adding this code to your BO AfterAddNew event:
Private Sub MyBO_AfterAddNew(ByVal e As System.EventArgs) Handles MyBO.AfterAddNew Me.MyUltraGridName.Refresh()End Sub
Cheers.
For comparison, if I enable the AddNewBox on the UltraGrid itself, it will add a new record to the bottom and also make the new record the active row. Is there an easy way of doing this with the form New toolbar command?
Thanks in advance.