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.

link|improve this question
feedback

3 Answers

If you use a TClientDataSet (which is a good idea anyway), you can use FindNearest.

link|improve this answer
feedback

First of all, save the id of the tuple previous to the one that you want to delete. Then delete the tuple that you wish to delete, and afterwards locate the saved tuple. To get to the previous tuple, use uniquery1.moveby (-1).

link|improve this answer
feedback

Save UniQuery1.RecNo before deleting. After deleting, re-query the dataset, which should set the first record active, then issue UniQuery1.MoveBy(SavedRecNo - 1) or UniQuery1.MoveBy(SavedRecNo - 2), depending on whether you want to move to the record succeeding or preceding the deleted one.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.