Jump to content
Xtreme .Net Talk

hophead3

Members
  • Posts

    2
  • Joined

  • Last visited

hophead3's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Mike, thanks for the reply. Actually, it's the .visible line that got it to work for me. The CommandBars line isn't needed. I happened to run across it on Microsoft's support site just before getting your reply (I think it was KB Article ID: 303017 that used the .visible line). Thanks again.
  2. Hi, I'm creating an Excel application and adding a new worksheet to it in a VB.NET windows application. The problem is, I want to be able to print the worksheet or save it. When I create the instance of the Excel application, the normal (File, Edit, View...etc) menu is not there at the top of the window. How can I get this to appear ? I've tried something like this: mAppExcel = New Excel.Application mWrkExcel = mAppExcel.Workbooks.Add mWrkExcel.Application.WindowState = Excel.XlWindowState.xlNormal 'mAppExcel.CommandBars("Worksheet Menu Bar").Enabled = True From what I've read, the CommandBars statement should enable this menu, but it doesn't. What am I missing? Thanks!
×
×
  • Create New...