I’m creating an instance of an Excel application in VB.NET, and can’t get the Menu Bar(“File, Edit, View etc.) to appear.
Private mAppExcel As Excel.Application
mAppExcel = New Excel.Application
mWrkExcel = mAppExcel.Workbooks.Add
mWrkExcel.Application.WindowState = Excel.XlWindowState.xlNormal
mWrkExcel.Application.CommandBars(“Worksheet Menu Bar”).Enabled = True