I have searched the web, Microsoft's site, vba help, but can't find a reference to what the '0 to 10' part of this dim statement means.
Dim myArray(0 to 10)
Can someone help clarify exactly is going on? I am suspecting it has to do with dimensioning a multidimensional array but I would like to understand what is happening under the covers or if I am even correct.
Edit: Sorry, I started thinking about this question in the context of redimensioning, which is where I first saw the example, but then saw that its use was also for the initial dimensioning as well.