Process for updating Excel add-in?

后端 未结 6 979
渐次进展
渐次进展 2021-01-01 06:29

I have an Excel 2003 add-in deployed in one of our departments that occasionally needs updated. What currently happens is that I publish the new version from my machine to

6条回答
  •  没有蜡笔的小新
    2021-01-01 07:10

    One way I achieved something similar, albeit, a while ago is as follows:

    Provide a button called Update on a common page (may be a common file, if you are using many) and when users click that, it opens a xls in a network location and copies the code from that file to the local file and closes the newly opened files.

    That way, whenever I had an update, I would send an email asking them to update code locally.

    It worked as I had few users and updates were fairly few in number. If you want an auto update, what prevents you from checking the version number during each and every opening of the file.

提交回复
热议问题