Subject | Re: [IBO] Transaction events... |
---|---|
Author | dmarmur2002 |
Post date | 2005-08-11T12:25:20Z |
--- In IBObjects@yahoogroups.com, Helen Borrie <helebor@t...> wrote:
BeforeCommit/BeforeCommitRetaining. I should perhaps have mentioned
that the "form" the user is working in uses CommitRetaining
(transaction Pausing is not yet implemented :). Theres "extra"
CommitRetainings done.
The BeforeCommit tells me that a CommitRetaining is pending since that
is why it was fired in the first place. In the "Transaction View"
(taken from the Transaction Pausing tutorial I can see that it was
actually tsActive or tsActivePending and it is only in these cases I
should fire the sound. So the Before events are to late too.
Thats why I was thinking of a timer. If the value _was_ tsActive or
tsActivePending the last time the timer was fired I play the sound.
I'll do some more trial-and-error time on this. Thanks for your
answer, Helen.
Regards,
/Dany
> At 09:38 AM 11/08/2005 +0000, you wrote:it to
> >Hi!
> >
> >My blind customers demand that sounds be heard on "Save" and "Undo".
> >Some users are advanced enough to make a differende between
> >Post/Cancel and Commit/Rollback. Some are not and they continually
> >Commit in stead of Posting a couple of times before Comitting.
> >
> >Playing sound on Post/Cancel events of the dataset seems to be no
> >problem. Also Rollback/RollbackRetaining events are fired only when
> >that really happens.
> >
> >But for Commit/CommitRetaining...
> >
> >I tried to put an event function into AfterCommit and
> >AfterCommitRetaining but at that stage the transaction is already
> >tsInactive. Problem is that I can not differ between a
> >Commit/CommitRetaining done after the transaction really was active
> >and one done when the transaction was inactive (happens a lot on
> >scrolls and such).
> >
> >It's simple when one is doing toolbar buttons, they don't mind a
> >couple of extra calls as long as the status is not changed. Playing
> >sounds though I really need to know if a Commit/CommitRetaining was
> >_physically_ done. Did the transaction have anything pending, that is.
> >
> >I tried to look at the transactions status in
> >BeforeCommit/BeforeCommitRetaining but that is the same. Always the
> >same status when these functions are executed.
> >
> >I also tried to put a TIB_TransactionSource on the form and hook into
> >StatusChanged but since it's a product of the events mentioned above
> >it's a no go.
> >
> >Anybody has aby ideas? Going the other way around (hooking into the
> >GUI/VCL) is no good because Commit/CommitRetaining can happen from
> >lots of different places and I don't think it would solve the problem.
> >
> >Perhaps a timer firing some every 0,1 second and comparing transaction
> >states? Is that advisable?
>
> Errrm, I don't think so! The passage of time is not going to change the
> transaction state, so what could one deduce from that?
>
> Could you just set up a property - of type TIB_TransactionState - into
> which you can store the value of the TransactionState in the the
> BeforeCommit and BeforeRollback events? In the AfterEnd event, check
> whether this saved value is greater than zero (=tsNone) then reset
> zero once you have the info you want. This value will tell youexactly what
> your Sound Choosing routine needs to know.I get tsCommitRetainingPending in every
>
> Helen
BeforeCommit/BeforeCommitRetaining. I should perhaps have mentioned
that the "form" the user is working in uses CommitRetaining
(transaction Pausing is not yet implemented :). Theres "extra"
CommitRetainings done.
The BeforeCommit tells me that a CommitRetaining is pending since that
is why it was fired in the first place. In the "Transaction View"
(taken from the Transaction Pausing tutorial I can see that it was
actually tsActive or tsActivePending and it is only in these cases I
should fire the sound. So the Before events are to late too.
Thats why I was thinking of a timer. If the value _was_ tsActive or
tsActivePending the last time the timer was fired I play the sound.
I'll do some more trial-and-error time on this. Thanks for your
answer, Helen.
Regards,
/Dany