non-static method cannot be referenced from a static context
privatevoid formMouseClicked(java.awt.event.MouseEvent evt){
// TODO add your handling code here:
System.out.println("Mouse CLicked X: " + evt.getX() +" Y : " + evt.getY());
chessPiece =null;
Component c = cheesBoard.findComponentAt(evt.getX(),evt.getY());
The component seems to be poping out
cheesBoard.java:1787: non-static method findComponentAt(int,int) cannot be referenced from a static context
i dont seem to be able to identify what i need to include there in order to have that problem removed ..... so some help would be appreciated @

