You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by bu...@apache.org on 2009/02/04 16:26:39 UTC

DO NOT REPLY [Bug 46664] New: Print Area does not save in HSSF worksheets

https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

           Summary: Print Area does not save in HSSF worksheets
           Product: POI
           Version: 3.5-dev
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: HDF
        AssignedTo: dev@poi.apache.org
        ReportedBy: ethan@superiordocumentservices.com


Created an attachment (id=23228)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=23228)
example code

I can set a print area and read it back just fine, but it does not get saved
when the document is written to disk. I have example code and files (both input
and output.)


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

Nick Burch <ni...@alfresco.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |NEEDINFO

--- Comment #18 from Nick Burch <ni...@alfresco.com> 2011-02-02 11:05:17 EST ---
(In reply to comment #17)
> Is this topic dead? I'm noticing the same bug in the POI 3.7 release. If there
> is any information I can provide tell me and I'll do what I can.

I'd suggest you try hacking the Ptg on the definition to be Reference not
Value, and see if that fixes it. (It'll probably mean some low level fiddling
about in the record layer)

If it does, we can make the change in POI. If not, more work will be needed to
identify the problem.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

Yohan Yudanara <yo...@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEEDINFO                    |NEW

--- Comment #8 from Yohan Yudanara <yo...@yahoo.com> 2010-06-08 06:44:33 EDT ---
Sorry,

I'm not able to use BiffViewer.java.
I also do not have good enough internet connection to checkout from poi svn.

I've attached 3 files:
1. TestPoiPrintArea.java
2. test_poi_36.xls: Generated Excel file when TestPoiPrintArea.java is being
run with poi-3.6.jar (set print area failed)
3. test_poi_32.xls: Generated Excel file when TestPoiPrintArea.java is being
run with poi-3.2-FINAL.jar (set print area success)

Do you need another document ?

Set print area is not working at all since poi-3.5-FINAL.jar, this is not
intermittent bug or in specific case.

Thank you very much..

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

Jan Thewes <ja...@gad.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Platform|PC                          |All
            Version|3.6                         |3.7
         OS/Version|All                         |Windows XP

--- Comment #17 from Jan Thewes <ja...@gad.de> 2011-02-02 10:57:32 EST ---
Is this topic dead? I'm noticing the same bug in the POI 3.7 release. If there
is any information I can provide tell me and I'll do what I can.

Best Regards

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

--- Comment #19 from ogawa <og...@oki.com> 2011-02-10 02:40:16 EST ---
I found a difference HSSFWorkbook and XSSFWorkbook.

In XSSFWorkbook#setPrintArea(), FormulaParser#parse() is called as follows.

FormulaParser.parse (formulaText, fpb, FormulaType.NAMEDRANGE, getSheetIndex
());

The third argument is FormulaType.NAMEDRANGE.

However, in HSSFWorkbook#setPrintArea(), third argument is FormulaType.CELL as
follows.

HSSFFormulaParser.parse (sb.toString (), this, FormulaType.CELL, sheetIndex)

In fact, if I create a following class, setPrintArea works fine.

--------------------------------------------------------------------------------

import java.lang.reflect.Field;
import java.util.regex.Pattern;

import org.apache.poi.hssf.model.HSSFFormulaParser;
import org.apache.poi.hssf.model.Workbook;
import org.apache.poi.hssf.record.NameRecord;
import org.apache.poi.hssf.record.formula.SheetNameFormatter;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.formula.FormulaType;

public class MyHSSFWorkbook extends HSSFWorkbook {

    private static final Pattern COMMA_PATTERN = Pattern.compile(",");
    private Workbook workbook;

    public MyHSSFWorkbook() throws NoSuchFieldException, IllegalAccessException
{
        this.workbook = getLowLevelWorkbook();
    }

    private Workbook getLowLevelWorkbook() throws NoSuchFieldException,
IllegalAccessException {
        Field field = HSSFWorkbook.class.getDeclaredField("workbook");
        field.setAccessible(true);
        return (Workbook) field.get(this);
    }

    @Override
    public void setPrintArea(int sheetIndex, String reference) {
        NameRecord name =
               
workbook.getSpecificBuiltinRecord(NameRecord.BUILTIN_PRINT_AREA, sheetIndex +
1);

        if (name == null) {
            name = workbook.createBuiltInName(NameRecord.BUILTIN_PRINT_AREA,
sheetIndex + 1);
            // adding one here because 0 indicates a global named region;
doesn't make sense for print areas
        }
        String[] parts = COMMA_PATTERN.split(reference);
        StringBuffer sb = new StringBuffer(32);
        for (int i = 0; i < parts.length; i++) {
            if (i > 0) {
                sb.append(",");
            }
            SheetNameFormatter.appendFormat(sb, getSheetName(sheetIndex));
            sb.append("!");
            sb.append(parts[i]);
        }
        // FormulaType.CELL -> FormulaType.NAMEDRANGE
        name.setNameDefinition(HSSFFormulaParser.parse(sb.toString(), this,
FormulaType.NAMEDRANGE,
            sheetIndex));
    }
}

--------------------------------------------------------------------------------

Is this a bug?

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

Nick Burch <ni...@alfresco.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |NEEDINFO

--- Comment #9 from Nick Burch <ni...@alfresco.com> 2010-06-08 06:47:11 EDT ---
Could you please generate a file with the same data and print area in excel?
That way we can also check that what we do matches what excel does once fixed,
and will also be a useful one for a read unit test

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

--- Comment #6 from Yohan Yudanara <yo...@yahoo.com> 2010-06-08 06:25:22 EDT ---
Created an attachment (id=25546)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=25546)
Generated Excel File when TestPoiPrintArea.java is run with poi-3.6.jar

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664





--- Comment #2 from ethan@superiordocumentservices.com  2009-02-04 07:27:51 PST ---
Created an attachment (id=23230)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=23230)
example output


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

Yohan Yudanara <yo...@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|HDF                         |HSSF

--- Comment #3 from Yohan Yudanara <yo...@yahoo.com> 2010-06-07 11:58:35 EDT ---
I've tried poi-3.2-final, poi-3.5-final, and poi-3.6

This problem is not happened in poi-3.2
But this problem is happened in poi-3.5-final and poi-3.6

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

Nick Burch <ni...@alfresco.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEEDINFO                    |RESOLVED
         Resolution|                            |FIXED

--- Comment #20 from Nick Burch <ni...@alfresco.com> 2011-02-11 07:37:11 EST ---
Thanks for tracking that down. I've changed HSSFWorkbook to set the correct
type, and added a unit test for it. Committed in r1069780.

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664





--- Comment #1 from ethan@superiordocumentservices.com  2009-02-04 07:27:31 PST ---
Created an attachment (id=23229)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=23229)
example input


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

--- Comment #16 from Nick Burch <ni...@alfresco.com> 2010-06-10 07:47:04 EDT ---
Hmm, maybe it wasn't just the TabID problem

The only other difference I can spot is in the print area name record:

     .NameIsMultibyte        = false
     .Name (Unicode text)    = Print_Area
     .Formula (nTokens=1):
-       org.apache.poi.hssf.record.formula.Area3DPtg [sheetIx=0 ! $A$1:$C$1]R
+       org.apache.poi.hssf.record.formula.Area3DPtg [sheetIx=0 ! $A$1:$C$1]V

(- is for the 3.2 version, + for the 3.7 one)

It seems to have been switched from a by-reference to by-value definition

I've no idea why, or what this'll do to excel (well, other than confuse yours
but not mine). I guess one for Josh (our resident formula guru)

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

Yohan Yudanara <yo...@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|yohan_y@yahoo.com           |dev@poi.apache.org

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

--- Comment #7 from Yohan Yudanara <yo...@yahoo.com> 2010-06-08 06:27:00 EDT ---
Created an attachment (id=25547)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=25547)
Generated Excel File when TestPoiPrintArea.java is run with poi-3.2-FINAL.jar

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

Yohan Yudanara <yo...@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |yohan_y@yahoo.com
         OS/Version|Linux                       |All

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

--- Comment #5 from Yohan Yudanara <yo...@yahoo.com> 2010-06-08 06:19:01 EDT ---
Created an attachment (id=25545)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=25545)
Test Set Print Area

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

DGrossman98 <do...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|3.5-dev                     |3.6
           Severity|normal                      |major

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

Nick Burch <ni...@alfresco.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED

--- Comment #12 from Nick Burch <ni...@alfresco.com> 2010-06-09 18:57:42 EDT ---
Fixed in r953180. It seems that some versions of excel are pickier than others
about the TabIdRecord when processing the print rules, and we'd stopped
updating it for new sheets....

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

Nick Burch <ni...@alfresco.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |NEEDINFO

--- Comment #4 from Nick Burch <ni...@alfresco.com> 2010-06-08 05:24:50 EDT ---
Any chance you could create 4 files:
* a simple document, but with enough data to make the print area make sense
* that document, as saved by excel having set the print area
* that document, as saved by POI 3.2 having set the print area
* that document, as saved by a recent POI svn checkout, having set the print
area

If you're also able to use org.apache.poi.hssf.dev.BiffViewer to spot the
differences between the 4, that'd be handy, as that'll help us narrow in on
which bits have gone wrong

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

--- Comment #15 from Yohan Yudanara <yo...@yahoo.com> 2010-06-10 07:36:42 EDT ---
Created an attachment (id=25577)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=25577)
Generated Excel File when TestPoiPrintArea.java is run with
poi-3.7-SNAPSHOT-20100610.jar

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

Yohan Yudanara <yo...@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |

--- Comment #14 from Yohan Yudanara <yo...@yahoo.com> 2010-06-10 07:33:30 EDT ---
I've running the TestPoiPrintArea.java using poi-3.7-SNAPSHOT-20100610.jar and
the print area still not set. (bug still not solved)

Does this snapshot contain fixed version (r953180) ?

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

Yohan Yudanara <yo...@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEEDINFO                    |NEW
         AssignedTo|dev@poi.apache.org          |yohan_y@yahoo.com

--- Comment #10 from Yohan Yudanara <yo...@yahoo.com> 2010-06-08 06:55:35 EDT ---
Created an attachment (id=25548)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=25548)
same document + set print area written manually in Excel (not using POI)

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

Yohan Yudanara <yo...@yahoo.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #25545|Test Set Print Area         |TestPoiPrintArea.java
        description|                            |

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

--- Comment #11 from Yohan Yudanara <yo...@yahoo.com> 2010-06-08 21:51:33 EDT ---
Created an attachment (id=25552)
 --> (https://issues.apache.org/bugzilla/attachment.cgi?id=25552)
Generated Excel File when TestPoiPrintArea.java is run with
poi-3.7-SNAPSHOT-20100608.jar

The set print area still not working on poi-3.7-snapshot

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org


DO NOT REPLY [Bug 46664] Print Area does not save in HSSF worksheets

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=46664

--- Comment #13 from Yohan Yudanara <yo...@yahoo.com> 2010-06-09 21:58:57 EDT ---
(In reply to comment #12)
> Fixed in r953180. It seems that some versions of excel are pickier than others
> about the TabIdRecord when processing the print rules, and we'd stopped
> updating it for new sheets....

Thanks a lot.. 
I will try when poi-3.7-SNAPSHOT-20100610.jar is available on
http://encore.torchbox.com/poi-cvs-build/

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@poi.apache.org
For additional commands, e-mail: dev-help@poi.apache.org