Re: TextBox bug

2006-07-13 Thread David Fisher
I know that Yegor knows less about "auto-fill" TextBoxes than the other types. It is time for him to find out ;-) Regards, Dave On Jul 13, 2006, at 9:31 AM, Nick Burch wrote: On Thu, 13 Jul 2006, Tales Paiva Nogueira wrote: This piece of code doesn't work in all cases, I made some tests a

Re[2]: TextBox bug

2006-07-13 Thread Yegor Kozlov
I will look into it when have my hands free :)) NB> On Thu, 13 Jul 2006, Tales Paiva Nogueira wrote: >> This piece of code doesn't work in all cases, I made some tests and the >> NullPointerException still happens. NB> I wonder if in this case, it's a TextBox that doesn't actually have any NB> t

RE: TextBox bug

2006-07-13 Thread Erez Eisenstein
, 2006 4:16 PM To: POI Users List Subject: RE: TextBox bug This piece of code doesn't work in all cases, I made some tests and the NullPointerException still happens. This time it happens in the TextBox.getRichTextRuns() when it tries to return _txtrun.getRichTextRuns(). -- Tales > Hi,

RE: TextBox bug

2006-07-13 Thread Nick Burch
On Thu, 13 Jul 2006, Tales Paiva Nogueira wrote: This piece of code doesn't work in all cases, I made some tests and the NullPointerException still happens. I wonder if in this case, it's a TextBox that doesn't actually have any text in it. I leave it for Yegor to confirm or deny though, since

RE: TextBox bug

2006-07-13 Thread Tales Paiva Nogueira
just the same): > > > RichTextRun[] rt; > if (_txtrun == null) rt = new RichTextRun[0]; > else rt = _txtrun.getRichTextRuns(); > > > > > Thanks > > > > > -Original Message- > From: Tales Paiva Nogueira [mailto:[EMAIL PROTECTED] > Sent: Thursday, July

RE: TextBox bug

2006-07-13 Thread Erez Eisenstein
: POI Users List Subject: RE: TextBox bug Hi, I noticed this problem few days ago, I made a little change in the code, and it worked properly for my needs. The change I made was add an test to ensure that the _txtrun isn't null. Below is the code for the setSheet(Sheet sheet) in the TextBox

RE: TextBox bug

2006-07-13 Thread Tales Paiva Nogueira
m not creating a TextBox myself... > > I have an instance of Slide, and I call the getShapes() method (some of > the shapes are TextBox instances) > > > > -Original Message- > From: Nick Burch [mailto:[EMAIL PROTECTED] > Sent: Thursday, July 13, 2006 11:23 AM >

RE: TextBox bug

2006-07-13 Thread Erez Eisenstein
Bug number - 40036 -Original Message- From: Nick Burch [mailto:[EMAIL PROTECTED] Sent: Thursday, July 13, 2006 11:42 AM To: POI Users List Subject: RE: TextBox bug On Thu, 13 Jul 2006, Erez Eisenstein wrote: > I have an instance of Slide, and I call the getShapes() method (some

RE: TextBox bug

2006-07-13 Thread Nick Burch
On Thu, 13 Jul 2006, Erez Eisenstein wrote: I have an instance of Slide, and I call the getShapes() method (some of the shapes are TextBox instances) OK, can you create a new bug on bugzilla, and upload both your code and the problem powerpoint file? (We need to be able to fully replicate yo

RE: TextBox bug

2006-07-13 Thread Erez Eisenstein
I am not creating a TextBox myself... I have an instance of Slide, and I call the getShapes() method (some of the shapes are TextBox instances) -Original Message- From: Nick Burch [mailto:[EMAIL PROTECTED] Sent: Thursday, July 13, 2006 11:23 AM To: POI Users List Subject: Re: TextBox

Re: TextBox bug

2006-07-13 Thread Nick Burch
On Thu, 13 Jul 2006, Erez Eisenstein wrote: If I create a new ppt file, with an empty textbox in it (that says: "click to add subtitle"), than the _txtrun is null. This causes the TextBox class to throw NullPointerExceptions, in methods getText(), setSheet(). When you create a TextBox, it doe

TextBox bug

2006-07-13 Thread Erez Eisenstein
If I create a new ppt file, with an empty textbox in it (that says: "click to add subtitle"), than the _txtrun is null. This causes the TextBox class to throw NullPointerExceptions, in methods getText(), setSheet(). - To unsubscri