↧
Increasing Performance of Regular Expressions in VBA
In a previous post I presented some general-purpose wrappers for adding regular expressions functionality to VBA and SQL in Microsoft Access. These wrappers work well, but we can make them much more...
View ArticleAccurate Performance Timers in VBA
There are many times when you want to know how fast your code really is. Especially if you find your VBA application responding slowly you need to know where the bottleneck is occurring. You can build...
View ArticleVBA Internals: Performance of Fixed vs. Dynamic Arrays
Arrays in VBA can have their dimensions either fixed at compile time or modifiable at runtime. Fixed-length arrays are declared by specifying the bounds in the declaration, while dynamic arrays must be...
View Article