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 @

[817 byte] By [stevoo82a] at [2007-11-27 1:22:47]
# 1
You must apply findComponentAt to an object.Is the name of your class cheesBoard? Pleae start class and interfaces names with a capital letter.
DrLaszloJamfa at 2007-7-12 0:10:24 > top of Java-index,Java Essentials,Java Programming...