DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6802>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=6802 Format Cells... dialog does not popup [EMAIL PROTECTED] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[EMAIL PROTECTED] Status|RESOLVED |REOPENED OS/Version|Other |Solaris Priority|Other |Low Platform|All |Sun Resolution|FIXED | ------- Additional Comments From [EMAIL PROTECTED] 2002-11-14 15:35 ------- I'm still having the same problem after changing my code to use HSSFColor instead of HSSFColorConstants, I'm not able to get the format cell dialog box. Is this still an open issue, or am I doing someting wrong? Below is how I'm creating cells and their styles. Please let me know if there is a fix when you get a chance. Thanks. HSSFWorkbook wb = new HSSFWorkbook(); HSSFSheet s = wb.createSheet(); HSSFRow r = null; HSSFCell c = null; HSSFCellStyle cs_amt = wb.createCellStyle(); HSSFFont f = wb.createFont(); f.setFontHeightInPoints((short)10); f.setBoldweight(f.BOLDWEIGHT_BOLD); cs_amt.setBorderBottom(cs_amt.BORDER_THIN); cs_amt.setBorderLeft(cs_amt.BORDER_THIN); cs_amt.setBorderRight(cs_amt.BORDER_THIN); cs_amt.setAlignment(cs_amt.ALIGN_RIGHT); cs_amt.setVerticalAlignment(cs_amt.VERTICAL_BOTTOM); cs_amt.setDataFormat(HSSFDataFormat.getFormat("(#,##0.00_);(#,##0.00)")); cs_amt.setFont(f); -- To unsubscribe, e-mail: <mailto:poi-dev-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:poi-dev-help@;jakarta.apache.org>
