Disable an action in a custom message form, without disabling even

B

Bruce

With VBScript in a custom form, how do I disable a action without disabling
all events in read mode? Currently, if you attempt to enable or disable an
action in a form, events do not fire in read mode on that form. The same
problem happens if you try to hide the action using the OnShow property of
the action.
 
S

Sue Mosher [MVP-Outlook]

No. Disabling an action one-offs the item. Instead, you might put code in
the CustomAction event handler to cancel execution of the action.
 
Top