0
Button to Delete Record
How do I create a button that I can add to a form that will enable me to delete the entire current record that is displayed in the form?
2 replies
-
The short version is
___
delete this
___
If you want some dialog
___
let check := dialog("Attention", "Are you sure?", ["Delete", "Cancel"]);
if check = "Delete" then delete this
___
-
That was very helpful, thank you very much.
Content aside
- 4 yrs agoLast active
- 2Replies
- 607Views