so i dont get the nasty error if i try u/lbound(array) when the array is empty
Printable View
so i dont get the nasty error if i try u/lbound(array) when the array is empty
Check the length property.
VB Code:
If arr.Length>0 then MessageBox.Show("I am not empty")