hi there..
i didn't understand what's your point here..
you are doing a loop 60 times (not 60 seconds)..
if you need to loop for 60 seconds you can do something like
Code:
Dim msg As DateTime = DateTime.Now.ToShortTimeString
while msg.AddSeconds(60).CompareTo(DateTime.Now.ToShortTimeString) = 0
... do something here...
loop
I don't see any array in your code...
HTH
Gonzalo