Hi all,
My forms version is 10g. i have created an MDI application
first i created MDI Fram by setting below properties in w-n-f-i trigger
SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW,POSITION,5,5);
SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW,TITLE,'My App');
SET_WINDOW_PROPERTY(FORMS_MDI_WINDOW,WINDOW_SIZE,830,590);
And i attached my menu module to this form
Now, when i run this form it loads the menu and everything works fine but when i open another form by a menu item then the new form opens with default menu module not my MDI menu. I want to keep the same MDI menu for all other forms also. for opening different forms i am using open_form built in.
Thanks