I am creating a program in windows form and in that program I would like to select an option in the combobox and it loads the image in the picturebox. This image will have the name that was selected in the combobox.
EX: combobox = banana it goes in the folder that the photos are and look for the one with the banana name and load it in the picture box.
Can you help me?
code used to save image to folder:
pictureBox6.Image.Save(@"E:\Programas\Projetos\Imagen\" + textBox1.Text + ".jpg");