I am using version 8.1 with VS 2008 sp1. I placed the UltraToolbarsManager on the form. I changed the Ribbon.ApplicationMenu.visible property to false and got an exception. The message says "The control Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea has thrown an unhandled exception in the designer and has been disabled."
Is this an issue with IG code?
Replying to old post for others searching for solution...
It maybe the Office2007UICompatibility is by default set to true. When set to true if you set the ApplicationMenu.Visible = false it raises an exception. Try the following
ultraToolbarsManager1.Office2007UICompatibility = false;ultraToolbarsManager1.Ribbon.ApplicationMenu.Visible =false;