I have done some searching and from what I have read I don't think this is possible, but I thought I would ask anyway.

Is there a way to do this:
VB Code:
  1. Dim a(2) As Boolean
  2. Dim b(2) As Boolean
  3.  
  4. a(0) = False
  5. a(1) = True
  6. a(2) = True
  7.  
  8. b(0) = False
  9. b(1) = True
  10. b(2) = True
  11.  
  12. If a = b Then MsgBox("yay")