In my project, I have a list box. When I click an item on the listbox, I want the PNG image from a file (stored in Global Varible, GV.dir) into the Picture Box named picBox... this is what I have...
picBox.Image = Image.FromFile(GV.dir + lstFull.SelectedIndex.ToString() + ".png");
GV.dir is equal to -> @"C:\Files"