help,Thank you all.

gus

New Member
As we know, we can press F4 key and then enter P key, to enter Progress Editor, How can I disable this function in MFG/PRO?
Thank you.
 
gus said:
As we know, we can press F4 key and then enter P key, to enter Progress Editor, How can I disable this function in MFG/PRO?
Thank you.

If you don't want others from accessing editor, there are many ways to do it. But this is the simplest coding:
Goto mfmenu.p if you have access to this program, tweetering in the section that handles the corresponding logic.

Add something like this:

if selection = "P" and you are not in the allowed group then do:
message "You are not allowed for this option.
next.
end.
 
Thank you.

But I can 't find source code of mfmenu.p located at /dlc/att/src.
and located at /dlc/att/xrc is compiled.

How can I do?
 
The best method to solve this problem is to add menu security. Go to menu security 36.3.1 and leave menu open and fill 1 as selection.

You will see that as description "Progress Editor" appears on top of the screen.

Use a security group to set security. Ready!!!

Don't modify the programs when you can make use of standard functionality.
 
W.Wulmsen said:
The best method to solve this problem is to add menu security. Go to menu security 36.3.1 and leave menu open and fill 1 as selection.

You will see that as description "Progress Editor" appears on top of the screen.

Use a security group to set security. Ready!!!

Don't modify the programs when you can make use of standard functionality.
W.Wulmsen Greate, Thanks a lot, btw it should be 36.5.1. Thanks again.
 
Back
Top