Hello:
I'm trying to control the resize event of my JFrame, using :
this.addComponentListener(new java.awt.event.ComponentAdapter()
{
public void componentResized(ComponentEvent e)
{
System.out.println("JFrame was resized");
}
});
The problem is (as I explain in the subject) that the event is only fire on mouse up, ??????
I need to know this event during the movement of the mouse with button pressed, not when I released it . .
Thanks in advance