DO NOT REPLY [Bug 34067] - OutOfMemoryError w/ Certain excel files

2005-03-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=34067.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=34067


[EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|RESOLVED|CLOSED




--- Additional Comments From [EMAIL PROTECTED]  2005-03-18 12:03 ---
Could it really be that simple?  Did I just need to increase my JVM max heap
size? Yes, it was that simple.  -Xmx128m did the trick.  Never mind.

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

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
Mailing List:http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/



DO NOT REPLY [Bug 34072] New: - No easy way to tell if worksheet is hidden (no access to the BoundsheetRecord option flag)

2005-03-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=34072.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=34072

   Summary: No easy way to tell if worksheet is hidden (no access to
the BoundsheetRecord option flag)
   Product: POI
   Version: 2.5
  Platform: All
OS/Version: All
Status: NEW
  Severity: enhancement
  Priority: P2
 Component: HSSF
AssignedTo: poi-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


All I really want to know is whether a worksheet is hidden or not.  It would be
nice if there was a simple boolean method on HSSFSheet that showed this
attribute. It would be so simple to do.  But the way Workbook hides the
boundsheets ArrayList, this is just not possible.  It seems like the only thing
that Workbook doesn't report about any given BoundsheetRecord is the option 
flag.

Here's what I propose for HSSFWorkbook:

  /**
   * Returns true if given worksheet is hidden.
   *
   * @param  iSheetnum index of worksheet to test.
   * @return true if given worksheet is hidden.
   * @throwsIndexOutOfBoundsException if iSheetnum is out of range 
   */
  public boolean isHidden( int iSheetnum )
  {
getWorkbook().isHidden( iSheetnum );
  }

Then in Workbook:
  /**
   * Returns true if given worksheet is hidden.
   *
   * @param  iSheetnum index of worksheet to test.
   * @return true if given worksheet is hidden.
   * @throwsIndexOutOfBoundsException if iSheetnum is out of range 
   */
  public boolean isHidden( int iSheetnum )
  {
BoundSheetRecord bsr = getBoundsheetRecord( iSheetnum );
return bsr.getOptions() != 0;
  }

  /**
   * Returns the BoundsheetRecord associated with given sheet number.
   *
   * @param  iSheetnum index of BoundsheetRecord to return.
   * @return the BoundsheetRecord at the specified position in this list.
   * @throwsIndexOutOfBoundsException if iSheetnum is out of range 
   *tt(iSheetnum lt; 0 || iSheetnum gt;= boundsheets.size())/tt.
   */
  protected BoundsheetRecord getBoundsheetRecord( int iSheetnum )
  { 
return (BoundsheetRecord)boundsheets.get( iSheetnum );
  }

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

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
Mailing List:http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/



Opal Andrews/STLS/FRS is out of the office.

2005-03-18 Thread Opal . Andrews
I will be out of the office starting  03/18/2005 and will not return until
03/28/2005.

If you need immediate assistance, please contact Ted Governal at 44-8664.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
Mailing List:http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/



Opal Andrews/STLS/FRS is out of the office.

2005-03-18 Thread Opal . Andrews
I will be out of the office starting  03/18/2005 and will not return until
03/28/2005.

If you need immediate assistance, please contact Ted Governal at 44-8664.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
Mailing List:http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/



DO NOT REPLY [Bug 34075] New: - Cannot hide a WorkSheet

2005-03-18 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=34075.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=34075

   Summary: Cannot hide a WorkSheet
   Product: POI
   Version: 2.5
  Platform: Other
OS/Version: other
Status: NEW
  Severity: normal
  Priority: P3
 Component: HSSF
AssignedTo: poi-dev@jakarta.apache.org
ReportedBy: [EMAIL PROTECTED]


Hi,
I cannot see any possibility to hide or unhide a sheet using POI.

I think there is missing a method setSheetVisible(int index, boolean flag) on
the HSSFWorkbook that will change the options of the BoundSheetRecord (bit 0==0
visible, bit 0=1 hidden)

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

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
Mailing List:http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/



Opal Andrews/STLS/FRS is out of the office.

2005-03-18 Thread Opal . Andrews
I will be out of the office starting  03/18/2005 and will not return until
03/28/2005.

If you need immediate assistance, please contact Ted Governal at 44-8664.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
Mailing List:http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/



Opal Andrews/STLS/FRS is out of the office.

2005-03-18 Thread Opal . Andrews
I will be out of the office starting  03/18/2005 and will not return until
03/28/2005.

If you need immediate assistance, please contact Ted Governal at 44-8664.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
Mailing List:http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/



There it goes again...

2005-03-18 Thread Kais Dukes

Does this mean we have to put up with this autoresponder for another 10 days
:-)

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: 18 March 2005 17:03
To: POI Developers List
Subject: Opal Andrews/STLS/FRS is out of the office.


I will be out of the office starting  03/18/2005 and will not return until
03/28/2005.

If you need immediate assistance, please contact Ted Governal at 44-8664.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
Mailing List:http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/

---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.859 / Virus Database: 585 - Release Date: 14/02/2005

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.859 / Virus Database: 585 - Release Date: 14/02/2005


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
Mailing List:http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/



Re: There it goes again...

2005-03-18 Thread avik . sengupta
I've tried to unsubscribe this address, dont know if it succeeded. If 
not, i'll
ask infrastructure.

Quoting Kais Dukes [EMAIL PROTECTED]:
Does this mean we have to put up with this autoresponder for another 10 days
:-)
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: 18 March 2005 17:03
To: POI Developers List
Subject: Opal Andrews/STLS/FRS is out of the office.
I will be out of the office starting  03/18/2005 and will not return until
03/28/2005.
If you need immediate assistance, please contact Ted Governal at 44-8664.




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
Mailing List:http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/


Re: There it goes again...

2005-03-18 Thread acoliver
Depends on whether the list is letting me unsubscribe people still.  I 
doubt it.

Kais Dukes wrote:
Does this mean we have to put up with this autoresponder for another 10 days
:-)
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: 18 March 2005 17:03
To: POI Developers List
Subject: Opal Andrews/STLS/FRS is out of the office.
I will be out of the office starting  03/18/2005 and will not return until
03/28/2005.
If you need immediate assistance, please contact Ted Governal at 44-8664.
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
Mailing List:http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/
---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.859 / Virus Database: 585 - Release Date: 14/02/2005
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.859 / Virus Database: 585 - Release Date: 14/02/2005
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
Mailing List:http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
Mailing List:http://jakarta.apache.org/site/mail2.html#poi
The Apache Jakarta POI Project: http://jakarta.apache.org/poi/