When I want to confirm a form exit, I use a DialogMsg call with an if to set Action parameter to caNone (No) or caHide (yes).
When I use that approach with database table row posting, I get a problem.
If I make a Save button with a confirmation dialog, I could call Post or Cancel, but when I have a Database Grid in the form, the problem comes when the user alter a row and later, selects another row, witch saves the previous row automatically.
The solution I found was to put the save confirmation dialog inside the OnBeforePost, but if the uses says No, how should I cancel the Post command to Continue? I've tryed Cancel and Abort commands, but it continues saving the row.
Abortcalled from theOnBeforePostevent should prevent from a data post. Could you show your code sample ? – TLama Aug 12 '12 at 12:52MessageDlgwith anIFthat when the user says No, I executes aCanceland the anAbort. This returns the row to it's preview state, but prevents the table to go to the row the user selected on the grid. – EASI Aug 12 '12 at 14:18