I have inherited a useless project to revamp. Its main functionality (of which there is little) involves having 4 image boxes sitting on top of each other, with transparent gifs being displayed in them, giving the effect when you change something on a combo box that it changes whichever of the transparent gifs that combo box relates to.

Its kind of a preview program for viewing what certain home layouts look like, crap really, but I have to tidy it up and the worst part of it is the flicker as it loads in the next image. The code to change the contents of the image box goes like this :

if combobox1.text ="whatever" then
image1.picture = loadpicture("whatever.gif")
end if

the form autoredraw is set to false.

Any idea why it flickers like mad ?