Forum: VB.NET Oct 19th, 2008 |
| Replies: 2 Views: 712 I found out how to do this:
Public MedalPicBoxes(35) As PictureBox
Sub InitializePics()
MedalPicBoxes(0) = PictureBox1
MedalPicBoxes(1) = PictureBox2
... |
Forum: VB.NET Oct 19th, 2008 |
| Replies: 2 Views: 712 I found out how to do this:
Public MedalPicBoxes(35) As PictureBox
Sub InitializePics()
MedalPicBoxes(0) = PictureBox1
MedalPicBoxes(1) = PictureBox2
... |
Forum: VB.NET Oct 14th, 2008 |
| Replies: 2 Views: 712 I have a whole bunch of pictureboxes on my form, they have the name picturebox1, picturebox2...picturebox36, and I was wondering if there was a way I could access them using an array. Would I have... |