Click to See Complete Forum and Search --> : Image


kkanagasabai
March 2nd, 2000, 03:50 AM
How to fix one photo (like image) in the right corner of the Frame. How to
write prg. for this. I am creating one form like application form. And how to
store in MSAccess.

March 2nd, 2000, 09:35 AM
All you have to do is put this in you paint function

g.drawImage(image,0,0,null);

you may want to override update() and just call paint() in it so that you don't get as much flashing. If the image is really big and you are getting flashing anyway, you will have to double buffer it.

As far as storing in MSAccess, that could be a book.