Instead of
Application.DisplayAlerts = false
which disables the ACCESS alerts, you need to use
excelApp.DisplayAlerts = false
if excelApp is the variable for Excel.Application.
e.g.
set excelApp = CreateObject('Excel.Application')
...
...
excelApp.DisplayAlerts = false
excelWB.SaveAs...
excelApp.Quit