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.
Printable View
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.
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.