Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
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!