Hi,
I face a peculiar problem.
Although i have placed the subclassed webutil object group below the relative objects of
the form's, the first canvas/block which is appeared at runtime is the webutil.
Even when i use the following at the When-new-form-instance:
declare
curform VARCHAR2(40);
blkname varchar2(50);
itmname varchar2(200);
begin
:system.message_level := 5;
curform := :System.Current_Form;
blkname := Get_Form_Property(curform,FIRST_BLOCK);
itmname := Get_block_property(blkname, first_item);
go_item(itmname);
end;
the result is the same(the first canvas is webutil, at runtime).
Only when i transform the above code as the following:
begin
go_item('blk.dir1');
end;
then i get the form's window first appeared....
Theimage below depicts the relative order of the objects in the form.
What should i do?
Thank you,
Sim
Note:
I use Oracle forms 10g,
Db 11.2.0.4
