I use TDBgrid in Delphi and the Dataset is Adoquery. I have many record which have the ID from 1 to 1000. Now for example I want to delete the 35th by TadoQuery 'Delete from...' Is there any way to immediately focus the 34th or 36th record for the customer to check if the 35th has been deleted.
Here's the code for my delete button
StudentID := UniQuery1.FieldValues['StudentID'];
UniQuery1.SQL.Clear();
UniQuery1.SQL.Text :=('Delete from Student where StudentID = ''' + StudentID + '''');
UniQuery1.SQL.Add('select * from Student');
UniQuery1.Execute;
Anyone can help, thank you very much.