Two Dimentional Arrays

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can anybody tell me how to store data to a two dimentional array.if the array
is declared as dim ArrayName(50,500).
Thanks in advance
 
Kurien
\\\
Dim ArrayName(50, 500) As String
ArrayName(0, 20) = "microsoft.public.dotnet.languages.vb"
///
In my opinion is that a better newsgroup for this kind of questions.

I hope this helps?

Cor

"Kurien Baker Fenn"
 
Back
Top