Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How to desable the option to export to excel, run-time for a particular user?
I'd simply give this particular user a copy of application where export is not allowed.
I need line comand with macro to desable options ?
I don't think you can change this option by a macro. That's way I suggest a separate application for this user.
How about diabling the context menu completely for a user?
Macro:
set docprop = ActiveDocument.GetProperties
docprop.DisablePopupMenus = true
ActiveDocument.SetProperties docprop
valeu....
Using Section Access