Throwback Thursday: April 30, 2026
In today's edition of Throwback Thursday, we revisit the bane of my VBA coding existence: the IDE's case-changing "feature."
With over a million words scattered across more than 1,500 articles on this blog, you've probably missed a few things here.
That’s why each week in "Throwback Thursday," we’ll revisit some standout posts. Expect a blend of my personal favorites, insightful articles from other great minds, and a touch of coding humor to keep things light.
Highlights from NoLongerSet.com



Wisdom from Around the Web

Support for clsStandardLetterCasing in the VCS Addin
The approach I described in the third article above is now available out of the box in Adam Waller's VCS Addin (dev version 4.1.5+):
I know we have had a lot of discussion here with various approaches to handling the letter casing challenges with VBA code. While I am not opposed to more sophisticated and elegant approaches, even branching out into other add-ins, I decided to take a more simplistic integrated approach for now. The benefit is that this is built right into the add-in, and works right out of the box without needing to utilize a customRunBeforeExporthook. It simply checks for the existence of a class module namedclsStandardLetterCasingand applies any letter casing rules as described in https://nolongerset.com/standardizelettercasing/
If you prefer to use another approach, or dedicated add-in for this, no problem! The integrated feature doesn't really add any overhead and is simply ignored if you don't have the specially named class in your project. But for those that just need a simple solution that is easy to set up, I think this might be a help. (I know I plan to use it for some projects.)
Cover image generated by Ideogram

