I have an old MFC tool for converting xls files to txt. It is designed for some specific data structure and it is not easy to rewrite it with a new structure (e.g. Qt).
The application works with excel and there is a file "Office.h" where the macro of office versions is defined:
#define Uses_MSO2010
Question: how to make the application determine which version of MSO is present on the computer and use it?
I would say I have access to the source code. The macro is used as:
rename("DocumentProperties", "DocumentPropertiesXL") \
rename("RGB", "RBGXL")
rename("DialogBox", "DialogBoxXL") rename("RGB", "RBGXL") \
rename("DocumentProperties", "DocumentPropertiesXL") \
rename("ReplaceText", "ReplaceTextXL") \
rename("CopyFile", "CopyFileXL") no_dual_interfaces
source
share