top of page
Blog posts
Search
Call Hierarchy for a VBA procedure
A Call Hierarchy shows calls of a given procedure by other procedures, and calls from that same given procedure to other procedures.
Nov 4, 20243 min read
0 comments


Dynamically loading a DLL "on-the-fly"
Calling the members of a dynamic-link library (DLL, in a .dll file), from VBA code, without having to first (separately) register that DLL.
Oct 2, 202411 min read
0 comments


Compare VBA Modules
Have you ever been in the situation where you have two versions of a Module and need to identify the differences?
Aug 24, 20244 min read
0 comments


Type Library explorer
Have you ever wanted to know what is in a Type Library without having to add a Project Reference to it from your VBA Project?
Jun 28, 20242 min read
0 comments


Add Enum from Type Library
Ever needed to convert an Enum member's name to its value when changing from early to late binding? Read this ...
Jun 27, 20242 min read
0 comments


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
0 comments


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
0 comments


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
0 comments


Calling C# code from VBA (COM interop)
Update October 2024: This post uses Visual Studio and/or RegAsm to 'statically' register your C# library before it is loaded and used by...
Feb 24, 202323 min read
11 comments


Articles: Blog2
bottom of page