Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Table1.Next; //Go Forward One Record
Table1.Prior; //Go Back back one record
Table1.First; //Go to the first record in the table
Table1.Last; //Go to the last record in the table
Table1.Edit;
Table1.Delete;
EricDraven said:To delete a record, the table needs to be in edit mode...
If messageDlg('Delete this record?',
mtConfirmation, [mbYes, mbNo], 0) = mrYes then
Table1.Delete;