Originally Posted by Phill64
you shouldn't use case statements to do this, you need a way to retrieve a certain image and its answer, Personally If the questions only go 1 way, i would use serialization to store your images and answers in a .dat file (which will rest in your programs main folder), this would also allow for an easy way to "upgrade" or "extend" your application at a later date.
Of course if you don't want to use files, particulary if there is not many questions, you could just use two arrays, one storing filenames of images you have and the other with the answers.
Also, you should use a PictureBox instead of a label to show your image, that's what theyre for :P
Let me know which way you'd rather use and i'll help you through it.