Which features of the VBA language are either poorly documented, or simply not often used?
feedback
|
|
This trick only works in Access VBA, Excel and others won't allow it. But you can make a Standard Module hidden from the object browser by prefixing the Module name with an underscore. The module will then only be visible if you change the object browser to show hidden objects. This trick works with Enums in all vb6 based version of VBA. You can create a hidden member of an Enum by encasing it's name in brackets, then prefixing it with an underscore. Example:
In Excel-VBA you can reference cells by enclosing them in brackets, the brackets also function as an evaluate command allowing you to evaluate formula syntax:
Also you can pass around raw data without using MemCopy (RtlMoveMemory) by combining LSet with User Defined Types of the same size:
Octal & Hex Literals are actually unsigned types, these will both output -32768:
As mentioned, passing a variable inside parenthesis causes it to be passed ByVal:
You can assign a string directly into a byte array and vice-versa:
"Mid" is also an operator. Using it you overwrite specific portions of strings without VBA's notoriously slow string concatenation:
| |||||
feedback
|
|
There is an important but almost always missed feature of the Mid() statement. That is where Mid() appears on the left hand side of an assignment as opposed to the Mid() function that appears in the right hand side or in an expression. The rule is that if the if the target string is not a string literal, and this is the only reference to the target string, and the length of segment being inserted matches the length of the segment being replaced, then the string will be treated as mutable for the operation. What does that mean? It means that if your building up a large report or a huge list of strings into a single string value, then exploiting this will make your string processing much faster. Here is a simple class that benefits from this. It gives your VBA the same StringBuilder capability that .Net has.
And here is an example on how to use it:
| ||||
|
feedback
|
|
VBA itself seems to be a hidden feature. Folks I know who've used Office products for years have no idea it's even a part of the suite. I've posted this on multiple questions here, but the Object Browser is my secret weapon. If I need to ninja code something real quick, but am not familiar with the dll's, Object Browser saves my life. It makes it much easier to learn the class structures than MSDN. The Locals Window is great for debugging as well. Put a pause in your code and it will show you all the variables, their names, and their current values and types within the current namespace. And who could forget our good friend Immediate Window? Not only is it great for Debug.Print standard output, but you can enter in commands into it as well. Need to know what VariableX is?
Need to know what color that cell is?
In fact all those windows are great tools to be productive with VBA. | |||||||||||||
feedback
|
|
It's not a feature, but a thing I have seen wrong so many times in VBA (and VB6): Parenthesis added on method calls where it will change semantics:
| |||||||||||||||||
feedback
|
|
Hidden Features
| |||||||||||||||
feedback
|
|
Possibly the least documented features in VBA are those you can only expose by selecting "Show Hidden Members" on the VBA Object Browser. Hidden members are those functions that are in VBA, but are unsupported. You can use them, but microsoft might eliminate them at any time. None of them has any documentation provided, but you can find some on the web. Possibly the most talked about of these hidden features provides access to pointers in VBA. For a decent writeup, check out; Not So Lightweight - Shlwapi.dll Documented, but perhaps more obscure (in excel anyways) is using ExecuteExcel4Macro to access a hidden global namespace that belongs to the entire Excel application instance as opposed to a specific workbook. | ||||
feedback
|
|
| ||||
|
feedback
|
|
Dictionaries. VBA is practically worthless without them! Reference the Microsoft Scripting Runtime, use The Scripting Runtime also gives you the FileSystemObject, which also comes highly recommended. Start here, then dig around a bit... http://msdn.microsoft.com/en-us/library/aa164509%28office.10%29.aspx | ||||
|
feedback
|
|
Typing | ||||
|
feedback
|
|
With a little work, you can iterate over custom collections like this:
Your custom collection code (in a class called
| ||||
|
feedback
|
| ||||
|
feedback
|
|
Support for localized versions, which (at least in the previous century) supported expressions using localized values. Like Pravda for True and FaĆszywy (not too sure, but at least it did have the funny L) for False in Polish... Actually the English version would be able to read macros in any language, and convert on the fly. Other localized versions would not handle that though. FAIL. | ||||
|
feedback
|
|
The VBE (Visual Basic Extensibility) object model is a lesser known and/or under-utilized feature. It lets you write VBA code to manipulate VBA code, modules and projects. I once wrote an Excel project that would assemble other Excel projects from a group of module files. The object model also works from VBScript and HTAs. I wrote an HTA at one time to help me keep track of a large number of Word, Excel and Access projects. Many of the projects would use common code modules, and it was easy for modules to "grow" in one system and then need to be migrated to other systems. My HTA would allow me to export all modules in a project, compare them to versions in a common folder and merge updated routines (using BeyondCompare), then reimport the updated modules. The VBE object model works slightly differently between Word, Excel and Access, and unfortunately doesn't work with Outlook at all, but still provides a great capability for managing code. | ||||
|
feedback
|
|
This is because | ||||
|
feedback
|
|
VBA supports bitwise operators for comparing the binary digits (bits) of two values. For example, the expression 4 And 7 evaluates the bit values of 4 (0100) and 7 (0111) and returns 4 (the bit that is on in both numbers.) Similarly the expression 4 Or 8 evaluates the bit values in 4 (0100) and 8 (1000) and returns 12 (1100), i.e. the bits where either one is true. Unfortunately, the bitwise operators have the same names at the logical comparison operators: And, Eqv, Imp, Not, Or, and Xor. This can lead to ambiguities, and even contradictory results. As an example, open the Immediate Window (Ctrl+G) and enter: ? (2 And 4) This returns zero, since there are no bits in common between 2 (0010) and 4 (0100). | ||||
|
feedback
|
|
This feature exists presumably for backwards-compatibility. Or to write hopelessly obfuscated spaghetti code. Your pick. | |||||||
feedback
|