Hello,
The title might a bit fussy but I could not come up with something better. I was wondering whether somebody could supply me with a tip on the following:
In a Form I've got lots of pictureboxes. Here is a bit of my code:
It is clear that the variables p en n determine what picturebox to populate. As this is rather a lot of code I was wondering whether there is an easier way to do this. Setting the name of the picturebox in a string or something. Any good idea's, any help appreciated.
Kind regards,
The title might a bit fussy but I could not come up with something better. I was wondering whether somebody could supply me with a tip on the following:
In a Form I've got lots of pictureboxes. Here is a bit of my code:
Code:
If p = 1 And n = 1 Then Me.PictureBox11.Image = objImage
If p = 1 And n = 2 Then Me.PictureBox12.Image = objImage
If p = 2 And n = 1 Then Me.PictureBox21.Image = objImage
If p = 2 And n = 2 Then Me.PictureBox22.Image = objImage
If p = 3 And n = 1 Then Me.PictureBox31.Image = objImage
If p = 3 And n = 2 Then Me.PictureBox32.Image = objImage
If p = 4 And n = 1 Then Me.PictureBox41.Image = objImage
If p = 4 And n = 2 Then Me.PictureBox42.Image = objImage
If p = 5 And n = 1 Then Me.PictureBox51.Image = objImage
If p = 5 And n = 2 Then Me.PictureBox52.Image = objImage
If p = 6 And n = 1 Then Me.PictureBox61.Image = objImage
If p = 6 And n = 2 Then Me.PictureBox62.Image = objImage
If p = 7 And n = 1 Then Me.PictureBox71.Image = objImage
If p = 7 And n = 2 Then Me.PictureBox72.Image = objImage
If p = 8 And n = 1 Then Me.PictureBox81.Image = objImage
If p = 8 And n = 2 Then Me.PictureBox82.Image = objImage
It is clear that the variables p en n determine what picturebox to populate. As this is rather a lot of code I was wondering whether there is an easier way to do this. Setting the name of the picturebox in a string or something. Any good idea's, any help appreciated.
Kind regards,