Excel Markup Versions Save

:cloud: This VSTO Add-In is used for marking up Excel files with revisions. There are two common methods of indicating where a revision has changed a drawing that contains a system diagram. The first is the cloud method, were each change is enclosed by a cloud shape. The second method involves placing a triangle with the revision number next to each effected portion of the drawing. The cloud method indicates changes from the most recent revision only, whereas the second method indicates all revisions to the drawing because all of the previous revision circles remain on the drawing. It is written in 3 different versions as a VSTO Add-In in C# and VB.NET as well as a VBA Add-In.

4.0.0.1

5 years ago

I've updated the VBA version and applied some suggestions from code review post.

https://codereview.stackexchange.com/q/206017/158032

  • use constants for both module and procedure names
  • declare FreeFile as Integer
  • use ISO format yyyymmddThhnnss for log file
  • remove usage of Is in Select Case expression for error trap
  • update Case Is <> 0 to Case Else for error trap

4.0.0.0

5 years ago