How can I change a picture box's image when I only have a string that has the name of the picture box. (it probably doesn't really matter that it's a picture box or that I am changing it's image)
For example:
"picturebox1".image = myimage 'how would I get this to actually set an image for picturebox1?
Controls.Findmethod suggested by @Douglas is better, because it allows you to traverse the tree of controls.Me.Controlsin the answer you linked only takes top level (direct children) into account.