How Create Alot Of Timer [message #325338] |
Thu, 05 June 2008 16:47  |
|
Hi All
I want To create Alot Of timer In one form
1- to Repeat some picture.
2- show time of sysdate in text item.
I Create This Code To Repeat Picture
But Cannot Create Another Please Help Me!!!!!!!!!!!!!!!!!!!!!
1 when-new-form-instance
----------------------------
declare
t timer;
begin
t :=create_timer('TI',3000,repeat);
end;
:global.x:=0;
2- when-timer-expired
----------------------------
if :global.x<7 then
:global.x:=(:global.x)+1;
read_image_file('D:\TC\image\Center'||:global.x||'.jpg','All','image4');
read_image_file('D:\TC\image\Center'||:global.x||'.jpg','All','image5');
read_image_file('D:\TC\image\Center'||:global.x||'.jpg','All','image6');
read_image_file('D:\TC\image\Center'||:global.x||'.jpg','All','image7');
read_image_file('D:\TC\image\Center'||:global.x||'.jpg','All','image8');
read_image_file('D:\TC\image\Center'||:global.x||'.jpg','All','image9');
else
:global.x:=0;
end if;
|
|
|
|