Please post examples of optimization done in VB/VBA/VB.net? Optimization can be in the context of performance or space/maintainability.
Edit: Please specify somewhere in your post which environment you know your technique works in. Thanks.
|
|
Please post examples of optimization done in VB/VBA/VB.net? Optimization can be in the context of performance or space/maintainability. Edit: Please specify somewhere in your post which environment you know your technique works in. Thanks.
|
||||||||||
|
|
|
Avoid variable declaration inside a loop like this...
Use this instead. Its more typing, but will save you resources for repeated variable instantiation.
|
||
|
|
|
|
When you really need to be careful not to waste resources in VB6/VBA:
Setting objMyFoo to Nothing will fire the FooClass' Class_Terminate method to do any custom freeing up or closing of resources then de-allocates any of objMyFoo's resources. GC in VB.NET behaves a little differently, though... |
||
|
|
|
|
Here are some techniques for optimizing VBA code (Excel VBA specifically). This is based partially on the tendencies of beginning VBA programmers to use the "Record Macro" function to build portions of their code:
Range("B1").Select
ActiveCell.Formula = "Hello there!"
Optimize that to just
Massive speed improvement! |
||
|
|
|
|
Here's some code I wrote in Excel/VBA to replace a page and half of buggy, ugly initialization statements. It was based on the fact the the thirty comboboxes on the page had similiar names, with similiar data, and I could exploit that to fill them.
|
||||
|