Re: Uhm.. Bug with HSSFRow.setHeight??

2004-07-09 Thread Roger Misteli
Hiyas I just wanted to ask again, if this is only me or if it can be reproduced by others. See sample below. To reproduce the error, you need to run the sample then open the generated XLS file in Excel. Now inside Excel, you can see that rows 11 to 20 are hidden, as they should see, so that's corr

Re[2]: Uhm.. Bug with HSSFRow.setHeight??

2004-07-01 Thread Roger Misteli
No, via Excel. Let the test code run, open the XLS file inside Excel and inside Excel, you see what rows are hidden (10 to 19), so click on Row 9 and 20 and mark both rows (which are right now hidden) then right click. In the context menu that appears, you can hide/unhide rows. Choose unhide and yo

Re: Uhm.. Bug with HSSFRow.setHeight??

2004-07-01 Thread Danny Mui
well when u say "unhide", didn't quite get what you meant. didn't know if you were setting it via code or excel. can you do a biffviewer on an excel hidden row to see what the heights are? maybe 0 is no the correct value or it stores the "old" height somewhere. add this to bugzilla so we don

Re[2]: Uhm.. Bug with HSSFRow.setHeight??

2004-07-01 Thread Roger Misteli
Well.. none, as the sample beyond states. I simply "unhide" them inside Excel (select the rows and in the context menu, click "unhide"). Regards, ROg On Thu, 01 Jul 2004 12:46:38 -0400 Danny Mui <[EMAIL PROTECTED]> wrote: > what height do you set to unsupress :) > > Roger Misteli wrote: > > > H

Re: Uhm.. Bug with HSSFRow.setHeight??

2004-07-01 Thread Danny Mui
what height do you set to unsupress :) Roger Misteli wrote: Hiyas POI team I think there is a bug in HSSFRow.setHeight. When I use this code: private static final short SUPRESS_HEIGHT = 0; public static void main(String[] args) { HSSFWorkbook book = new HSSFWorkbook(); HSSFSheet sheet =

Uhm.. Bug with HSSFRow.setHeight??

2004-07-01 Thread Roger Misteli
Hiyas POI team I think there is a bug in HSSFRow.setHeight. When I use this code: private static final short SUPRESS_HEIGHT = 0; public static void main(String[] args) { HSSFWorkbook book = new HSSFWorkbook(); HSSFSheet sheet = book.createSheet(); for (int i=0; i<100; i++)