README.md

December 4, 2022 ยท View on GitHub

As Array got elements or not

Description

Not many people know this one, an API that checks if an array as elements or not

More Info

Submitted On
Bystephen whittle
LevelBeginner
User Rating4.6 (32 globes from 7 users)
CompatibilityVB 6.0
CategoryWindows API Call/ Explanation
WorldVisual Basic
Archive File

Source Code

Private Declare Function SafeArrayGetDim Lib "oleaut32.dll" (ByRef saArray() As Any) As Long ----------------------------------
If SafeArrayGetDim(Your array) > 0 Then
 Debug.Print "Array as elements"
End If