Visual Basic: How to pass an array parameter to another routine
This routine will pass a parameter to another routine This routine receives the call with array as parameter Sub TestPassArray() Dim LongArray(1 To 5) As Long Dim i As Integer For i = 1 To 5 LongArray(i) = i Next i Read more…