I must be tired!! why cant I do this:
DIm Array1() as string
Dim Array2() as string
Array1 = Split(StuffFromFile,"vbcrlf)
Array2 = Array1 ???
how do I set 1 array = another?
Printable View
I must be tired!! why cant I do this:
DIm Array1() as string
Dim Array2() as string
Array1 = Split(StuffFromFile,"vbcrlf)
Array2 = Array1 ???
how do I set 1 array = another?
Hey,
This worked for me:
VB Code:
Private Sub Command1_Click() Dim Array1() As String Dim Array2() As String Dim strStuff As String strStuff = "bob" & vbCrLf & "Larry" & vbCrLf & "Moe" Array1() = Split(strStuff, vbCrLf) Array2() = Array1() End Sub
LOL!! omg!
it was not the A = B that was my issue.. it was my function checcking if the array was loaded!! oops
;)