Hi everybody,
can i change the name of the window.For e.g when i run the form the window title(top left of window) is
Oracle Forms Runtime-[WINDOW1].I want to change it to the name of my application.
Thanks
pras
Printable View
Hi everybody,
can i change the name of the window.For e.g when i run the form the window title(top left of window) is
Oracle Forms Runtime-[WINDOW1].I want to change it to the name of my application.
Thanks
pras
in a trigger when_instance_started (as i can remember)
or in any other trigger u may use procedure:
set_window_property(FORMS_MDI_WINDOW, TITLE, 'New Window Name');
thanks shestkov again,
yeah i got the solution...
on WHEN-NEW-FORM-INSTANCE
Set_Window_Property(FORMS_MDI_WINDOW, WINDOW_STATE, MAXIMIZE);
Set_Window_Property(FORMS_MDI_WINDOW, TITLE, 'ABC');
can u pls see my previous post...waiting for ur suggestions
Thanks
pras