VBEX
VBEX copied to clipboard
VBA Extension Library
The instructions for compiling this addin do not work as of Nov 12 2018. Using Office 365 (2016) 64 bit. I changed the powershell execution policy to allow unrestricted running...
- it would be nice, to have a documentation/wiki about whole process of setup/using this framework. With examples. - same for separated features/classes
Do we need both Enumerable and List? Should we consolidate functionality, or simply refactor them so that one calls the other to remove code duplication?
[Enumerable.Contains](https://github.com/ckuhn203/VBEX/blob/master/Core/Enumerable.cls) This code causes [Runtime Error 424](http://msdn.microsoft.com/en-us/library/office/gg251554%28v=office.15%29.aspx). ``` For Each cell In Range("C3:C8056") If Not (e.Contains(cell.Value)) Then columnD.Add (cell.value) End If Next cell ``` Can be worked around by using...