Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have a vba userform that accesses an embedded spreadsheet to drive a multibopy part design. the issue is I do not want the excel application visible (minimized would suffice). I am able to get the spreadsheet to not show (See snippet below), but I still get the excel application popping up.(see attached image.
Is there a way that I can get the excel application to "disappear" so that the end user only sees the form and the inventor application?
Thanks in advance
Set eApp = Excel.Application
With eApp
.Application.WindowState = xlMinimized
.Visible = False
.ScreenUpdating = False
.WindowState = xlMinimized
End With
Solved! Go to Solution.