Are dimensional arrays possible? how?
-
in c++ dmensional arrays were defined like: int array[][]; are dimensional arrays possible in vb and if so how do i define/use them? thank you --------------------- And Like The Wind Our Hero Vanishes Off Into The Distance...
-
in c++ dmensional arrays were defined like: int array[][]; are dimensional arrays possible in vb and if so how do i define/use them? thank you --------------------- And Like The Wind Our Hero Vanishes Off Into The Distance...
Dim myVar(10, 10, 10) As Long
Dim myVar(10) As Long
Dim myVar2() As Long
VB.NET only:
Dim myVar As Array = Array.CreateInstance(GetType(Integer), 10)Dim myVar As Array = Array.CreateInstance(GetType(Integer), 10, 10)
RageInTheMachine9532
-
Dim myVar(10, 10, 10) As Long
Dim myVar(10) As Long
Dim myVar2() As Long
VB.NET only:
Dim myVar As Array = Array.CreateInstance(GetType(Integer), 10)Dim myVar As Array = Array.CreateInstance(GetType(Integer), 10, 10)
RageInTheMachine9532
thank you --------------------- And Like The Wind Our Hero Vanishes Off Into The Distance...