RE: tripping on step 1 AND email problems

2002-02-22 Thread Corey Nelson
Marc wrote: > Try "FileSystem fs = new FileSystem(in);" > > Your code, as written, is opening the file, then ignoring the file and > creating a brand new POIFS file system and reading its root entry. Being > a brand new file system, it has no files in its root ... > > Marc > Sigh. Of course.

Re: RE: tripping on step 1 AND email problems

2002-02-22 Thread acoliver
No problem Corey... happens to the best of us. :-) >On Fri, 22 Feb 2002 09:34:03 -0700 Corey Nelson <[EMAIL PROTECTED]> wrote. >Marc wrote: >> Try "FileSystem fs = new FileSystem(in);" >> >> Your code, as written, is opening the file, then ignoring the file and >> creating a brand new POIFS fil

which version of log4j is used by POI 1.0.2

2002-02-22 Thread An Feng-I Chen
Hi, I've tried to ask this question to several addresses but get no answer. Hope this time is the right place to ask question regarding using POI. I need to find a solution to interface Excel files to my application. I've downloaded POI jars and tried to run the sample test driver "HSSF" but go

RE: which version of log4j is used by POI 1.0.2

2002-02-22 Thread Nelson, Jeffrey
Title: RE: which version of log4j is used by POI 1.0.2 Not the answer you are looking for, but I have successfully used log4j 1.1.3. We have since changed to log4j1.2alpha2. and had to modify HSSFLog and POILogFactory.  -Original Message- From:   An Feng-I Chen [mailto:[EMAIL PROTE

Re: which version of log4j is used by POI 1.0.2

2002-02-22 Thread acoliver
>On Fri, 22 Feb 2002 09:08:30 -0800 "An Feng-I Chen" <[EMAIL PROTECTED]> wrote. >Hi, > >I've tried to ask this question to several addresses but get no answer. Hope >this time is the right place to ask question regarding using POI. > If you have a question about POI you've come to the right place

RE: which version of log4j is used by POI 1.0.2

2002-02-22 Thread An Feng-I Chen
Title: RE: which version of log4j is used by POI 1.0.2 Thanks a lot, Jeffrey! I've just tried log4j113 and it works.   an -Original Message-From: Nelson, Jeffrey [mailto:[EMAIL PROTECTED]]Sent: Friday, February 22, 2002 10:08 AMTo: '[EMAIL PROTECTED]'Subject: RE: which versi

Re: RE: which version of log4j is used by POI 1.0.2

2002-02-22 Thread acoliver
>On Fri, 22 Feb 2002 13:08:29 -0500 "Nelson, Jeffrey" <[EMAIL PROTECTED]> wrote. >Not the answer you are looking for, but I have successfully used log4j >1.1.3. > >We have since changed to log4j1.2alpha2. and had to modify HSSFLog and >POILogFactory. > POI now builds in GUMP so if you just use th

How to get a cell value by call name?

2002-02-22 Thread An Feng-I Chen
Title: RE: which version of log4j is used by POI 1.0.2 Hi,   When I study the test case codes and API, I couldn't find a way to get a cell value from a row by cell name. I need to read any Excel spreadsheet and look for columns that I support. I cannot assume the cell numbers for those columns

Re: How to get a cell value by call name?

2002-02-22 Thread acoliver
The short answer: no, not yet. I didn't even realize you could name cells/columns/rows :-). (Can you tell that I don't actually USE Excel, I only interface with it ;-) ). It appears Cells, Columns and Rows can have names. While I'm sure we'll implement this in time, we'll not have a key-cell

Can I add a hyperlink to a cell?

2002-02-22 Thread An Feng-I Chen
Thanks a lot for replying questions so promptly. This is most responsive support I have ever encountered. Now my question is can I add a hyperlink to a cell? an

Re: Can I add a hyperlink to a cell?

2002-02-22 Thread acoliver
That's not implemented yet. That one isn't that big of a deal, just for 1.0.x we had only "things andy does except for formulas" as requirements... For 2.0 its mostly formulas and graphing. I looked into that recently, it wouldn't be hard at all. Right now I don't have time to do this though

Re: which version of log4j is used by POI 1.0.2

2002-02-22 Thread Marc
An Feng-I Chen wrote: >Hi, > >I've tried to ask this question to several addresses but get no answer. Hope >this time is the right place to ask question regarding using POI. > > >I need to find a solution to interface Excel files to my application. I've >downloaded POI jars and tried to run the s