Board index » delphi » Stopping a Post.

Stopping a Post.

With the TTable is there any way to stop a Post once a call to post as
started. or is there an event to check before before the post starts
that a cancel can be called from.
Thanks
Donald S. Bossen
 

Re:Stopping a Post.


Raise an exception in the dataset's BeforePost event handler to stop the
post. You can raise a silent exception by calling

SysUtils.Abort;

or you can use the raise command.

--
Bill
(TeamB cannot answer questions received via email)

Re:Stopping a Post.


Thank for the Quick Responce.
Donald S. Bossen
Quote
"Bill Todd (TeamB)" wrote:
> Raise an exception in the dataset's BeforePost event handler to stop the
> post. You can raise a silent exception by calling

> SysUtils.Abort;

> or you can use the raise command.

> --
> Bill
> (TeamB cannot answer questions received via email)

Other Threads