Greetings all.
I have an Excel add-in that opens a template in a new instance of Excel, distinct from the worksheet from which the add-in runs. How can I get a message box to appear in the new instance instead of the original one? I'm completely stymied here.
Here is the code that launches the template:
code:
--------------------------------------------------------------------------------
Public Sub OpenExcelTemplate()
'Create Excel Objects to display reports
On Error GoTo Error_Handler
gsTemplateFile = Environ("USERPROFILE") & "\Application Data\Microsoft\Templates\" & gsTemplateFile
'Open Excel file
Set objXL = GetObject("", "Excel.Application")
Set objWorkBooks = objXL.Workbooks
Set objWorkBook = objXL.Workbooks.Open(gsTemplateFile)
Set objWorkSheets = objWorkBook.Worksheets
With objXL
.Cursor = xlWait
.StatusBar = "Generating Reports. Please be patient..."
End With
Exit Sub
Error_Handler:
LogFile.WriteLine CStr(Now()) & ": Could not open Excel Template. Error: " & Err.Number & " " & Err.Description
Err.Clear
End Sub
--------------------------------------------------------------------------------
Bookmarks