Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Moving Push Button in co-ordination with Timer

kamranpathanAug 27 2009 — edited Aug 31 2009
Dear users...I've been using the following code in When-Timer-Expired Trigger to move my push buttons on Timer Expiry in my 6i Client Server forms.
Declare
Timer_Expired Varchar2(100);
Begin
Timer_Expired := Get_Application_Property(Timer_Name);
Set_Item_Property('PB_Test',X_Pos,Get_Item_Property('PB_Test',X_Pos)+1);
If Get_Item_Property('PB_Test',X_Pos)>=492 Then
Delete_Timer(Timer_Expired);
End If;
End;

Now I'm trying to use Timer Bean n I've set it up in my form i.e timer is working ok. But I dont know that how I can co-ordinate the movement of my Buttons with this Java Bean Timer. Can u help me in this matter???
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 28 2009
Added on Aug 27 2009
9 comments
932 views