Displays the indicated window at either the optionally included X,Y coordinates, or at the window's current X,Y coordinates. If the indicated window is a modal window, SHOW_WINDOW is executed as a GO_ITEM call to the first navigable item in the modal window.
SHOW_WINDOW
(window_id Window);
SHOW_WINDOW
(window_id Window,
x NUMBER,
y NUMBER);
SHOW_WINDOW
(window_name VARCHAR2);
SHOW_WINDOW
(window_name VARCHAR2,
x NUMBER,
y NUMBER);
Built-in Type unrestricted procedure
Enter Query Mode yes
/*
** Built-in: SHOW_WINDOW
** Example: Override the default (x,y) coordinates for a
** windows location while showing it.
*/
BEGIN
Show_Window('online_help',20,5);
END;