top of page
Blog posts
Search
Special binding
If you develop your VBA code using early binding but switch to late binding when deploying, then 'special binding' may be useful to you.
Jun 26, 20244 min read
Â
Â


Improving the VBE's Intellisense 'auto list members' popup
Show All Members is a larger, searchable, filterable equivalent that also shows, where available, the 'doc string' for members.
Jun 25, 20245 min read
Â
Â


Version Control for VBA
Turn back the clock and revert to an earlier version of your code or just view changes that have been made since an earlier point in time.
Jun 20, 20247 min read
Â
Â


Running code in one place when you're editing code in another ...
... is a pain with VBA when developing and running code from within the VBE ... so make life simpler with "Sub To Run" and "Run Again"
Jun 12, 20244 min read
Â
Â


Make a VBA Module "Option Explicit"
Have a module without "Option Explicit" and need to add it? Don't do it manually, use VBE_Extras to do it for you ...
May 21, 20242 min read
Â
Â


Adding / updating "Project References" in the VBE
A better way to add, update and explore the available "Project References" (Type Libraries and other VBA Projects)
May 17, 20245 min read
Â
Â


Tracking your cursor location history in the VBE
When developing code in any modern IDE (integrated development environment), you will always find that your cursor (caret) location is track
May 13, 20241 min read
Â
Â


Implement an Interface / Extract an Interface in VBA with VBE_Extras
VBE_Extras can now automatically implement and extract Interfaces for you. Both these functions are in the Refactor sub-menu.
Apr 29, 20241 min read
Â
Â


VBA line numbers
What's the point of adding line numbers to VBA code? Only one good reason in my opinion … error handling.
Apr 17, 20242 min read
Â
Â


Automatically indenting VBA code
Indenting code ... it's not sexy ... but it does make code much more readable and maintainable when done correctly
Feb 29, 20241 min read
Â
Â


Articles: Blog2
bottom of page