Skip to content
filcuk edited this page Aug 1, 2019 · 2 revisions

Check if array is initialised

This takes advantage of a bug in VB6

Dim someArray() As Integer

If ((Not someArray) = -1) Then
Debug.Print "this array is NOT initialized"
End If

Clone this wiki locally