Disable item in shortcut menu

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

Guest

I have a shortcut menu linked to a list box. When this shortcut menu is
activated, I would like to enable/disable certain items based on values
associated with the record or records selected in the listbox.

Is there any way to accomplish this?
 
Dale said:
I have a shortcut menu linked to a list box. When this shortcut menu is
activated, I would like to enable/disable certain items based on values
associated with the record or records selected in the listbox.

Is there any way to accomplish this?


Use something like:

CommandBars!menuname.Controls!controlname.Enabled
 
Back
Top