Is there a way to remove an element from an array?
given the following ....
How can I remove element 3 and resize the array such as this ...
I know I can do this in other languages. Can it be done in VB?
David Pimental
(US, Oh)
given the following ....
Code:
Dim arrTest (1 to 5) as int
arTest(1) = 1
arTest(2) = 2
arTest(3) = 3
arTest(4) = 4
arTest(5) = 5
How can I remove element 3 and resize the array such as this ...
Code:
arTest(1) = 1
arTest(2) = 2
arTest(3) = 4
arTest(4) = 5
I know I can do this in other languages. Can it be done in VB?
David Pimental
(US, Oh)