RATE THIS ANSWER
+1
Click to Vote:
1
0
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.