in Visual Basic.Net you have to declare the array yourself like for example
Dim myNum(5) as Integer
this declares the array with an Integer data type then
give each element of the array a value
myNum(0) = 1
myNum(1) = 2
myNum(2) = 3
myNum(3) = 4
myNum(4) = 5



LinkBack URL
About LinkBacks




Reply With Quote


Bookmarks