Disable print

B

Bdavis

I have a secured Access application. From the main form the user can click
review a report. I would like to restric certain users from being able to
print the report. I have already customises the pop-up menu and removed the
print option.


I realize that you can still do print-screens etc but I am not dealing with
sophisticated users so, for the time-being, I'm not concerned.
 
V

Van T. Dinh

Do you meant that you want to disable the Print command in the standard /
default Menu Bar?
 
B

Bdavis

Actually, it's a custom menu bar so either disable the print in my custom
menue bar or if there is a way to make a different menue show-up depending on
the user (without a print otion) that would work as well.
 
V

Van T. Dinh

The following statement works for the command "About Microsoft Access" in
the custom Toolbar "Custom 1":

Application.Commandbars.Item("Custom 1"). _
Controls("About Microsoft Access").Enabled=False
 
Top