I have an application that makes EXCEL imports, but I get messages that I want to prevent them from coming out. For this, I use
xlsApp = New Excel.Application
xlsApp.Visible = True
xlsApp.DisplayAlerts = False
xlsWB = xlsApp.Workbooks.Open(rutaArchivos & "\" & Me.fuExcelImportacionLavado.FileName)
xlsSheet = xlsWB.Worksheets(1)
but still it's still coming out. How can I prevent it from coming out?
The message that comes out is the following:
Any Idea? Thank you very much !!