I'm trying to write and read to/from a two dimensional array, but not having any luck. Can I get a few tips on this ?? I have a project that I MUST have done today... I hate being under the GUN!!!
I will have processes writing to the array, and then after it's all done, I want to read the entire array as:
1,1
1,2
1,3...
2,1
2,2
2,3...
I'll be generating a report after. I can manage the processing part, but the darn reading and writting to the array so far is not working for me...
Thanks in advance!
-SWarrior
Code:
arrayObj = Array(10,5)
arrayObj(1,1) = "\\machine01\c$"
arrayObj(2,1) = "\\machine02\c$"
arrayObj(1,2) = "Copy Failed"
arrayObj(2,2) = "Successful Copy"
I will have processes writing to the array, and then after it's all done, I want to read the entire array as:
1,1
1,2
1,3...
2,1
2,2
2,3...
I'll be generating a report after. I can manage the processing part, but the darn reading and writting to the array so far is not working for me...
Thanks in advance!
-SWarrior