G
Guest
Here is one I can't find any help on. I was using early binding to open a
workbook, but because of different versions of Access and Excel we have, I
have to change it to late binding. Using early binding, the following would
allow me to open the workbook without getting a warning message about
updating external data sources:
Set xlApp = New Excel.Application
Set xlBook = xlApp.Workbooks.Open(varGetFileName, 0)
Since I now have to use the GetObject:
Set xlApp = GetObject(varGetFileName)
I can't find a way to supress the message.
Any assistance will be appreciated.
workbook, but because of different versions of Access and Excel we have, I
have to change it to late binding. Using early binding, the following would
allow me to open the workbook without getting a warning message about
updating external data sources:
Set xlApp = New Excel.Application
Set xlBook = xlApp.Workbooks.Open(varGetFileName, 0)
Since I now have to use the GetObject:
Set xlApp = GetObject(varGetFileName)
I can't find a way to supress the message.
Any assistance will be appreciated.