ichabodp
05-08-2004, 10:00 AM
I would like to load an array with a row from a matrix. I want to do various operations with the rows of the matrix. I have some code but I am not sure about it.
Private Sub Form_Load()
ReDim Arr(7) As Variant
Dim n, o, p As Variant
For n = 1 To 7
For o = 1 To 7
p = Matrix1(n, o)
Next o
K() = o
Next n
End Sub
Thank you for any help!
Private Sub Form_Load()
ReDim Arr(7) As Variant
Dim n, o, p As Variant
For n = 1 To 7
For o = 1 To 7
p = Matrix1(n, o)
Next o
K() = o
Next n
End Sub
Thank you for any help!