'How to fill a listbox at run time to have products, pricing, and a reference to a photo of the item. Private Sub frmMain_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load '---show store banner in picture box picBanner.Image = Image.FromFile("..\images\pet store banner small.jpg") '---now load the list box lstProducts.Items.Add("Birds 49.95 bird.jpg") lstProducts.Items.Add("Horse 649.95 colt.jpg") lstProducts.Items.Add("Fish 4.95 fish.jpg") lstProducts.Items.Add("Cats 29.95 kitten.jpg") lstProducts.Items.Add("Puppy 29.95 puppy.jpg") lstProducts.Items.Add("Rabbit 39.95 rabbit.jpg") lstProducts.Items.Add("Sheep 249.95 sheep.jpg") lstProducts.Items.Add("Turtle 6.49 turtle.jpg") End Sub