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
 
Back
Top