moving the text item. [message #78545] |
Fri, 01 March 2002 05:24  |
m masoom
Messages: 8 Registered: June 2001
|
Junior Member |
|
|
hello
i want to my text_item here and there in the form with timer. can any body help me,how can i use the timer.
thanks to solve my problem.
|
|
|
|
Re: moving the text item. [message #313471 is a reply to message #78545] |
Sat, 12 April 2008 14:17  |
owais_baba
Messages: 289 Registered: March 2008 Location: MUSCAT
|
Senior Member |
|
|
hi mr massom
use this code
when_new_form_instance
if id_null(create_timer('SCROLL_TIMER', 200, REPEAT)) then
null;
end if;
when_timer_expired
DECLARE
TimerName varchar2(40) := get_application_property(TIMER_NAME);
BEGIN
if TimerName = 'SCROLL_TIMER' then
scroll_view('CNv_SCROLL', 0, mod(get_view_property('CNv_SCROLL', VIEWPORT_Y_POS_ON_CANVAS)+1, 37));
end if;
END;
after that place text item field on canvas with the of cnv_scroll and also change name of canvas like cnv_scroll
thansk "dont feel hesitate to ask frequently questions"
owais
|
|
|