Quote Originally Posted by Mark Gambo
I think this is what you want:
VB Code:
  1. Private Sub Form_Load()
  2. Dim a as Long
  3.  
  4.     Call Button_Captions
  5.     Call Label_Captions
  6.    
  7.     Me.BackColor = vbBlue
  8.        
  9.      With Frame
  10.            For a = .LBound to .UBound    
  11.                 With .Item(a)
  12.                      .BackColor = vbBlue
  13.                      .ForeColor = vbWhite
  14.                 End With
  15.      End With
  16. End Sub
Compile error:
end with without with. (last end with -- interesting)