Question: I have added two menu items to the PopupMenu in SalesLogix. I would like
to be able to disable the PopupMenu items programatically. Any advice?
Answer: Take a look at the Oppportunity:Products form. This shows a method to achieve this.
Disable:
.PopupMenu.Items(0).Enabled = False
Enable
.PopupMenu.Items(0).Enabled = True



