REPLACE_MENU Problem [message #515574] |
Tue, 12 July 2011 04:33 |
oralover2006
Messages: 144 Registered: January 2010 Location: India
|
Senior Member |
|
|
hi all,
i created two Menus 1) main.mmb 2) md_menu.mmb
i am using Replace_Menu menu built-in to call md_menu from main as:
declare
m_name varchar2 (100) := 'c:\project\md_menu';
begin
Replace_Menu(m_name, PULL_DOWN);
end;
and in md_menu.mmb i wrote as below to exit from current menu and re-display previous main.mmb
declare
m_name varchar2(100) := 'c:\project\main';
begin
Replace_Menu(m_name, PULL_DOWN);
end;
its displaying my first main.mmb but i can't navigate ( it is not displaying any menu item but only Top level menu )
what i have missed? what should i do to solve this problem?
please help.
best regards.
|
|
|
|
Re: REPLACE_MENU Problem [message #515580 is a reply to message #515579] |
Tue, 12 July 2011 04:49 |
oralover2006
Messages: 144 Registered: January 2010 Location: India
|
Senior Member |
|
|
thanks for your attention.
i have compiled all, nothing happened, its all ok!
may be something else as you mentioned additional parameters etc.
Problem Solved !!
Actually there were restriction codes to access menu items, i over looked it. now i have included that code in main.mmb Menu Startup Code in Property Pallate
thanks Littlefoot once again for your attention.
[Updated on: Tue, 12 July 2011 05:57] Report message to a moderator
|
|
|