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

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
No. Disabling an action one-offs the item. Instead, you might put code in
the CustomAction event handler to cancel execution of the action.
 
Back
Top