Hi I would like to know, how you draw in a JFrame (or something similar) as you draw in an Applet? This might seem like a stupid question - but I can't find any ressources. The problem is how to draw, say a small image or a circle on the frame and make it move. Thanks in advance! /Svend Rost
Hi, U cannot use any of the Applet's methods in JFrame except for paint() method!! paint(Graphics g) is in fact the class Container's paint() method. Whenever u need to do some sort of drawing on the container, u use this method. Regards, Shashi