English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Dim array as integer
array=number.text

2006-08-08 19:43:41 · 3 answers · asked by Anonymous in Computers & Internet Programming & Design

3 answers

UBound(arr)

2006-08-09 01:08:19 · answer #1 · answered by anilmathewm 2 · 0 0

By using UBOUND()

Sub main()
Dim arr() As Integer, x

ReDim arr(5)

arr(1) = 2
arr(2) = 6
arr(3) = 8

x = UBound(arr)

MsgBox x

End Sub

2006-08-09 06:53:54 · answer #2 · answered by VBACCESSpert 5 · 0 0

http://www.vbi.org/Items/article.asp?id=133 >>> function ArrayLen

2006-08-09 03:04:47 · answer #3 · answered by cHORPO 2 · 0 0

fedest.com, questions and answers