Hello all,

I am trying to write a simple app which has parallel arrays. One array has option buttions and the other array
has images. I want to move an image to a larger image based on the option selected.

My click event for the options buttons is;


Private Sub Option_Click(Index As Integer)
imgPicture.Picture = Image(Index).Picture
End Sub

Why do I get an error of 'invalid qualifier'?

Gary