Hi all,
The ACL menu_delete command works well when the menu name's just one word, like "Find". But when it has more than one word ("Find Expressions, for example"), it doesn't work.
I've tried these:
menu_delete .Edit."Find Expressions"
menu_delete .Edit."Find &Expressions"
menu_delete .Edit. "Find &Expressions"
menu_delete .Edit. "FindExpressions"
Solved! Go to Solution.
Try
menu_delete .Edit.Find_Expressions
The underscore character is used for spaces and underscores in menu path matching. Details can be seen by searching for "Special characters in menu paths" in Help.
Try
menu_delete .Edit.Find_Expressions
The underscore character is used for spaces and underscores in menu path matching. Details can be seen by searching for "Special characters in menu paths" in Help.
That's it!
Thank You!