VBS如何獲得數組大小?
Dim s(100) As Long
Debug.Print UBound(s) '最大下標 在這里是100
Debug.Print LBound(s) '最小下標 在這是0
ubound(s)-lbound(s)+1 即size
VBS如何獲得數組大小?
Dim s(100) As Long
Debug.Print UBound(s) '最大下標 在這里是100
Debug.Print LBound(s) '最小下標 在這是0
ubound(s)-lbound(s)+1 即size