'Use this to show a image file inside a picture box. '-------display image in picture box PictureBox1.Image = Image.FromFile("..\train1.jpg") 'The ..\ part tells C# to look in the root folder of your project to find the file. 'but you can put in any path you wish. 'If you put your images inside another folder, then use this: PictureBox1.Image = Image.FromFile("..\images\" & "train1.jpg")