I would like to customize running my SQL statement. At this moment, I am using->
DoCmd.RunSQL strSQL
This statement will deletes from one of my tables, but instead of getting the standard message box:
"You are about to delete 1 row(s).
Once you click Yes, you can’t use the undo command to reverse the changes. Are you sure you want to delete the selected row?
"
I would like to customize my own, but I am not sure how to do it. Any suggestions would be greatly appreciated.
DoCmd.RunSQL strSQL
This statement will deletes from one of my tables, but instead of getting the standard message box:
"You are about to delete 1 row(s).
Once you click Yes, you can’t use the undo command to reverse the changes. Are you sure you want to delete the selected row?
"
I would like to customize my own, but I am not sure how to do it. Any suggestions would be greatly appreciated.
Comment