Error 800A000A

julyrih

Junior Member
Dec 8, 2015
1
0
0
Need som help, Im trying to merge one textfile with computernames and one
list of computers that an account in my AD is aloud to log to.
When I try to Redim in the For Each Loop I receive an error 800a008 The
array is locked. Why?
 

bzb_Elder

Member
May 25, 2011
86
13
71
It sounds like you're trying to redim an array that was declared with a specific size (ie: dim myArray(2)), which you can't do.

An example of your code would likely generate more helpful responses.