I am trying to design a quiz where the user will be presented randomised images to grade. I am at the stage of writing code to randomise image without repeating. Images are stored in imagelist and are being randomised in picturebox. At the moment my code loops around continuously with repeats. However I would like it to present images randomly without repeating. Here's the randomise snippet of my code. Hellllppp!
Code:
...Button Click Dim intPic As Integer Dim rand as New Random IntPic=rand.Next(0, Imagelist1.Images.Count PictureBox1.Image= Imagelist1.Images(intPic)
Comment