Currently working on a project where we export to an excel sheet.
I encountered some problems due to diffrent versions of excel used, for instance our test enviroment still uses excel 2003 while our remote dev have 2010.
(With remote dev I mean we have some people of our company working on it as well but who are not on our main site)
We managed to get everyones automation working for all versions but are cursing on the lack of clear-cut ways/information of doing things.
Basically I'm looking for information/documentation that could show each of the functions and properties available in the excel automation and how they work.
Thank you
0
Comments
RIS Plus, LLC
You got _Application and Application interface, both link to the same page but there is a difference.
In this instance the report used Application interface for the older excel versions, but when we tried this for machines we excel 2010 we got the following error:
'The variable XPAPPL::PROTECTEDVIEW is defined multiple times....'
We did not receive this error for the _Application interface, so their is a subtle diffrence that is not explained by the pages.
What I've got out of it all was that, when problems occurs with application due to methods or functions having a same name/signature, use _application.
I'm guessing it is because it's a wrapper around the application which makes all the functions go one lvl deeper.
|To-Increase|