Hiding a stacked canvas in Oracle 9i
20 pts.
0
Q:
Hiding a stacked canvas in Oracle 9i
how to hide the stacked cancas using a code in the oracle9i? i call the stacked using the form so the problem now is what code am i going to use to hide it in runtime! so that the user input will be on the content canvas and the stacked canvas will not be visible after i click a command! help.. any code please!
ASKED: Feb 28 2009  4:55 PM GMT
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
0
29820 pts.
0
A:
 RATE THIS ANSWER
+1
Click to Vote:
  •   1
  •  0
  • AddThis Social Bookmark Button
oh its oracle 10g! how to disable the stacked canvas using a button! what code?

------------------------

The set_canvas_property built-in does not offer a mean to hide the canvas, but I think you could achieve that by using the HIDE_VIEW Built-in.

Syntax
PROCEDURE HIDE_VIEW(view_id ViewPort);
PROCEDURE HIDE_VIEW(view_name VARCHAR2);

Here is an exampe from the documentation:

/*** Built-in: HIDE_VIEW 
** Example: Programmatically dismiss a stacked view from the
** operator's sight.
*/
PROCEDURE Hide_Button_Bar
IS
BEGIN
Hide_View
('Button_Bar');
END;


You could also try using the SET_VIEW_PROPERTY Built-in, which allows the modification of the view's VISIBLE property.
Last Answered: Mar 12 2009  0:37 AM GMT by Carlosdl   29820 pts.
Latest Contributors: Kiara   20 pts.
0
0
Discuss This Answer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _



0