Quote:
>I dimension an array using Dim in the general declarations section of a form
>so it can be used throughout the form. Then I want to ReDim it in a Sub
>within the form, but it won't let me. Any ideas?
You have to declare it with no dimensions:
Dim MyArray() as Integer.
JEFF