I was using VB 2005 Express Edition. I made an array of buttons by copying and pasting the buttons to add more buttons to the array. When I converted the project to VB 2008 Express Edition, it kept the buttons in an array and this format which I am familiar with, but I cant add more buttons to the array or create new similar arrays. In the buttons in the original array, I see a property called "Index on [name of array]" but I cant get that property when I try copying and pasting a button.
Here is a screenshot of the section of the button's properties that deals with the array:
When I look at the coding for the page, I see:
- Code: Select all
Private Sub atom_Click(ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles atom.Click
Dim Index As Short = atom.GetIndex(eventSender)
Thanks for your help,
CampSoup1988