Moving Push Button in co-ordination with Timer
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???