Subject Re: [IBO] Active Transaction have any writes?
Author Helen Borrie
At 01:49 AM 15/10/2003 +0000, you wrote:
>Is there any way to know if an active transaction needs to write any
>information? I want to enable a 'Save' button if there is any
>update/insert/deletes in a transaction?

Yes, monitor the transaction's PostPendingCount and TransactionIsActive
properties. PostPendingCount keeps tally of datasets with changes not yet
posted; TransactionIsActive becomes true once any dataset in the
transaction posts something

Helen