Disable item in shortcut menu

D

Dale Fye

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?
 
M

Marshall Barton

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
 
Top