Here is something I’m trying to understand.
Function newArray()
Dim myarray()
Dim i, x
ReDim myarray(5, 10)
For i = 0 To 5
For x = 0 To 10
Debug.Print myarray(i, x)
Next
Next
End Function
Can someone make this work? What I want to do is determine whether the mouse pointer is within a certain predetermined block of Twips on a Form. In my case it is
upper left corner
(1300, 600)
lower right corner
(3500, 6000)
So I figure a two dimensional array might do it but I’m a total dope when it comes to arrays. If someone would prefer to point me to a book that would be fine. I did do a search before posting. Thanks for any help.
Paul