I am working on a project which embeds an Excel app. Thats all fine.
Problem is, when I try to hide the Application's Worksheet menu bar, it throws a COM Exception and that's it, it won't go further than that

how can I disable or hide the menu bar in the embedded Excel app?

using Excel 2003 API. The code to hide the menu bar is as follows:


this._excelApplication.CommandBars["Worksheet Menu Bar"].Visible = false;

Thanks