README.md
December 4, 2022 ยท View on GitHub
Description
Not many people know this one, an API that checks if an array as elements or not
More Info
| Submitted On | |
| By | stephen whittle |
| Level | Beginner |
| User Rating | 4.6 (32 globes from 7 users) |
| Compatibility | VB 6.0 |
| Category | Windows API Call/ Explanation |
| World | Visual 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