vote up 1 vote down star

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.

flag

Can you please be more specific? – StingyJack Oct 15 '08 at 16:43
Yes - this is kind of like asking for "how do you kill a termite": hundreds of possible answers, but without knowing what the context is, very hard to provide good responses. A .30-06 will work, but it's mighty expensive! :) – warren Oct 15 '08 at 16:45
I tried to narrow it down to vb, but wasn't sure how to specify farther. I'd just like to see good examples of optimization that I could use in the future. – Lance Roberts Oct 15 '08 at 16:46
Also, optimizations in VB/VBA won't necessarily apply to VB.NET – Bob King Oct 15 '08 at 17:08
Yes, but I figured I'd have more chance for a good quantity of answers if included them all, and I have to work with them all. I'll edit in a request to specify known environments. – Lance Roberts Oct 15 '08 at 17:13

4 Answers

vote up 2 vote down

Avoid variable declaration inside a loop like this...

For each ctl as Control in Form1.Controls
  Dim string1 as String = ctl.ID
  Dim string2 as String = ctl.ToolTip
  Dim string3 as String = ctl.Text
  Dim string4 as String = ctl.BackColor.ToString()
  'do things with the strings
Next

Use this instead. Its more typing, but will save you resources for repeated variable instantiation.

Dim string1 as String 
Dim string2 as String 
Dim string3 as String 
Dim string4 as String 

For each ctl as Control in Form1.Controls
  string1 = ctl.ID
  string2 = ctl.ToolTip
  string3 = ctl.Text
  string4 = ctl.BackColor.ToString()
  'do things with the strings
Next
link|flag
vote up 1 vote down

When you really need to be careful not to waste resources in VB6/VBA:

Private Sub DoStuff()
    Dim objMyFoo As New FooClass

    ' use objMyFoo

    ' done with objMyFoo
    Set objMyFoo = Nothing

    ' do some more stuff
End Sub

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...

link|flag
vote up 1 vote down

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:

  1. Application.ScreenUpdating = False
    Turn off screen updating when you start your procedure, then turn it back on at the end. Makes an enourmous difference!!

  2. Using the macro recorder in Excel gives you statements like:

Range("B1").Select
ActiveCell.Formula = "Hello there!"

Optimize that to just

Range("B1").Formula = "Hello there!"

Massive speed improvement!

link|flag
vote up 0 vote down

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.

' For Buy & Sell Sheets, Fill all ComboBoxes and Clear contents  
    For Each initsheet In Worksheets  
        If (Left$(initsheet.Name, 3) = "Buy" Or Left$(initsheet.Name, 4) = "Sell") Then  
            initsheet.Activate  
            For Each cCont In ActiveSheet.OLEObjects  
            ' Cycle through all controls, filling all ComboBoxes  
                If TypeOf cCont.Object Is MSForms.ComboBox Then  
                    With cCont  
                        Select Case Left$(.Name, 5)  
                            Case "cmbMW"  
                                .ListFillRange = parSheet.Name & "!" & parSheet.Range("transUnit", Sheet2.Range("transUnit").End(xlDown)).Address  
                                .Object.ListIndex = 0  
                            Case "cmbTy"  
                                .ListFillRange = parSheet.Name & "!" & parSheet.Range("transType", Sheet2.Range("transType").End(xlDown)).Address  
                                .Object.ListIndex = 0  
                            Case "cmbCo"  
                                .ListFillRange = parSheet.Name & "!" & parSheet.Range("transCo", Sheet2.Range("transCo").End(xlDown)).Address  
                                .Object.ListIndex = 0   
                            Case "cmbSe"  
                                .Object.List() = ServerArray  
                        End Select  
                    End With  
                End If  
            Next cCont  
            Range("B6:K30").ClearContents  
        End If  
    Next initsheet
link|flag
any clues on how to format this better, I put the two spaces on the end of every line, but it doesn't help with the front. I tried <code> tags, but those didn't work. – Lance Roberts Oct 15 '08 at 16:47
highlight the text and click the image with a 101010 on it. – StingyJack Oct 15 '08 at 16:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.