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 does

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

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 Tales Paiva Nogueira
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 bug On Thu, 13

RE: TextBox bug

2006-07-13 Thread Erez Eisenstein
To: 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 class

RE: TextBox bug

2006-07-13 Thread Tales Paiva Nogueira
[] 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 13, 2006 3:15 PM To: POI Users List Subject: RE: TextBox bug Hi, I noticed

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,

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