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:
Dim a(2) As Boolean Dim b(2) As Boolean a(0) = False a(1) = True a(2) = True b(0) = False b(1) = True b(2) = True If a = b Then MsgBox("yay")




Reply With Quote