Home » Developer & Programmer » Forms » FRM-93652 Forms Error (11g)
FRM-93652 Forms Error [message #549530] Sun, 01 April 2012 03:40 Go to next message
prowael
Messages: 10
Registered: January 2012
Location: KSA
Junior Member
I have a screen of 11g developed to display pics in cycle like video I am using timer to display pics one after one in 6i it is working fine no problems but in 11g and with some pics it is giving the error FRM-93652 , any help please.
Shocked

waelamar
Re: FRM-93652 Forms Error [message #549549 is a reply to message #549530] Sun, 01 April 2012 05:19 Go to previous messageGo to next message
Littlefoot
Messages: 21808
Registered: June 2005
Location: Croatia, Europe
Senior Member
Account Moderator
Could it be that "some pics" are problem? Do all those pictures have same properties (size, color depth, whatever)?

Did you try to recompile the form (Ctrl + Shift + K)?

Did you check My Oracle Support for possible issues (maybe there's a patch that solves your problem)?
Re: FRM-93652 Forms Error [message #549551 is a reply to message #549549] Sun, 01 April 2012 06:01 Go to previous messageGo to next message
prowael
Messages: 10
Registered: January 2012
Location: KSA
Junior Member
Thanks for your reply actually i compiled it too many times with no good results..

Regards,
Re: FRM-93652 Forms Error [message #549562 is a reply to message #549551] Sun, 01 April 2012 09:00 Go to previous message
owais_baba
Messages: 289
Registered: March 2008
Location: MUSCAT
Senior Member
Dear Friend Follow these steps

1. when-new-form-instance 

     declare
        t timer;
      begin
        t :=create_timer('TI',3000,repeat);
     end;

2.WHEN-TIMER-EXPIRED

if :global.x<7 then
   :global.x:=(:global.x)+1;
   read_image_file('c:\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;


this logic acomplished in form6i
try to also run this on form 11g might be could work


baba Cool

Previous Topic: Connect using proxy user
Next Topic: Difference between system.current_item and system.cursor_item
Goto Forum:
  


Current Time: Thu Apr 25 22:24:30 CDT 2024