I often use solutions based on VSTO Excel templates. One of the things that I like about this type of project is that I can use cached data sets in an Excel template or worksheet to process the state of the application that is saved after the user saves the file. However, cached datasets pose a problem: the document schema is tied to the application version.
This was not a big problem, but I realized that it would be nice to create a mechanism that will read the version of the Excel document when it is opened, in order to detect and handle version incompatibilities. For example, if my 2.1 plugin opens document 1.5, the cached data scheme will not match what was expected.
Is there a standard or recommended way to print an Excel stamp or worksheet? If not, does anyone have any suggestions on how to do this?
source share