Hi,
I need to populate an array using numerical input from a user. The input is similar to a social security number. Can you help me? I tried to find previous postings dealing with this, but I was unsucessful.
Thanks a lot!
Sorry - last post was JavaScript Version
Here is a VBScript version
<SCRIPT language = "VBScript">
Dim VBArray()
Dim Cnt
Cnt = 0
sub AddtoVBArray()
ReDim Preserve VBArray(Cnt )
VBArray(Cnt)= document.F1.T1.value
For i = 0 to UBound(VBArray)
msgbox VBArray(i)
next
Cnt = Cnt + 1
end Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.