What I'm trying to do is have a collection of images stored in a media drive be dynamically changed once the user enters the images name in a text field. At the moment all I am able to do is load one singular image.
Is what I'd like to do even possible? If so, how can I go about doing it?
I'm extremely new to winform programming and my google searches haven't turned up much.
EDIT
Managed to fix the issue. The line of code I needed was as follows:
pictureBox1.Image = Image.FromFile("Image Location");