boss
my problem is i have some drawing in the panel.when i minimize the window it will disappear because it is dynamically getting drawn.So, for capuring the old drawing, i store the coordinates into the vector and
trying to redraw by calling a method when applet gets
maximized.
Initially the application was a stand alone , so i used
JFrame and window listener and whenever frame gets activated , i used to redraw the line . Now we have changed to applet.
And i tried to implement window listener, i could not able to add listener to the contenetPane.
So i decided to call my drawing method from START(),Since start is been called whenever applet is activated.I decided to do so.
But the problem is ,it is calling the method,identifying the
coordinates but the lines are not appearing in the screen.
My suspection is, it is drawing the line and once again
repainting the screen automatically.
If u people wants to see am ready to post the code.