Lines Matching refs:excelApp
730 excelApp As Excel.Application, _
738 Set excelApp = Application
739 excelApp.Visible = True
741 Set excelApp = GetExcelInstance
742 excelApp.Visible = False
746 Set resultSheet = excelApp.Workbooks.Add(Template:=resultsTemplate)
749 Set resultSheet = excelApp.Workbooks.Open(resultsFile)
756 excelApp.DisplayAlerts = False
761 Sub CloseXLSResultFile(excelApp As Excel.Application, _
770 If Not excelApp Is Nothing Then
771 excelApp.Visible = True
772 If excelApp.Workbooks.count = 0 Then
773 excelApp.Quit
777 Set excelApp = Nothing