I have a large number of images that I need in my VB program but they slow the application right down
So instead of placing then on the form what I was wondering was if I placed all the required images in a file then at runtime somehow say along the lines of:
If CheckBoxApple = true then
Picture1.Picture = 'Apple.jpeg'
end if
Is something like this even possible to do?
