Index: HSSFSheet.java =================================================================== RCS file: /home/cvspublic/jakarta-poi/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java,v retrieving revision 1.21 diff -r1.21 HSSFSheet.java 1023a1024,1033 > /** > * set active cell position > * @param row row number at the cell > * @param col column number at the cell > */ > public void setActiveCell(int row ,short col){ > Sheet sheet = getSheet(); > sheet.setActiveCellRow(row); > sheet.setActiveCellCol(col); > }