Subject | Re: [IBO] How to validate data before a post and cancel that operation eventually? |
---|---|
Author | Woody (TMW) |
Post date | 2005-06-22T16:25:15Z |
> I'd like to do some validations and calculations on a dataset, justGunther,
> before the post is performed.
> How can i do that? IB_Query.beforepost,
> IB_datasource.onupdatedate, IB_Datasource.ondatachange?
>
> How can I cancel the post operation if I find an error in the entered
> data? Is there an "abort" method available?
I usually use the OnBeforePost event of the dataset. If you need to
cancel the posting of the record, issue a silent exception, something like
Sysutils.Abort (in Delphi).
HTH
Woody