Hiding a Workbook on Load of Excel app?

  • Thread starter Thread starter Brian Underhill via DotNetMonster.com
  • Start date Start date
B

Brian Underhill via DotNetMonster.com

I was trying to create a form that links to an Excel file. Once i get the
form to open the Excel object, is there anyway to hide it form view? I do
not wan the user to see the initialization of the Excel app, just the form.

Thanks,
Brian
 
Dim xlApp As New Excel.Application
xlApp = CreateObject("Excel.Application")
xlApp.Visible = False
is the code I use. Hope this helps
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top