I have an array and the following code:
Private g_unsuccessfulSendIndices() As Integer
Private Sub SomeSub()
ReDim g_unsuccessfulSendIndices(0)
Dim l_bool As Boolean
l_bool = Not g_unsuccessfulSendIndices 'Here, l_bool becomes True
ReDim g_unsuccessfulSendIndices(0)
l_bool = Not g_unsuccessfulSendIndices 'But here, l_bool becomes
False - what is the difference?
Archived from group: microsoft>public>vb>syntax