[edit] - please note that VBasicGirl's example does in fact work.Code:Private Sub Form_Load() Dim a() As String If Not a Then Debug.Print "A is not initialized" ReDim a(1, 1) If Not a Then Debug.Print "A is still not initialized - since NOT A does not check for that!" End Sub




Reply With Quote