How to create digital clock in Oracle Forms
Timer in Oracle Forms is very easy to use you have only to write a two Triggers
1. WHEN-NEW-FORM-INSTANCE
2. WHERE-TIMER-EXPIRE
======================
WHEN-NEW-FORM-INSTANCE
Declare
timer1 timer;
Begin
--Create a timer to trigger it every 1 sec(1000msec)
timer1:=create_timer('timer1',1000,repeat);
END;
====================
WHERE-TIMER-EXPIRE
:DISPLAY_ITEM4 := to_char(sysdate,'hh24:mi:ss');

Hi... can you please tell me how to do the same process for reverse time
ReplyDeleteThanks ..
ReplyDeletehow i can make this timer like stopwatch
ReplyDelete