Re: Change parts of text in Word files

2010-11-10 Thread David Fisher
Aspose is a commercial / non-open source product. Support costs money. Well over $1,000. http://www.aspose.com/corporate/purchase/end-user-license-agreement.aspx Apache POI is open source, we are volunteers, and we are here to help assuming that you ask questions in a clear way and willingly wa

Re: Change parts of text in Word files

2010-11-10 Thread Trollchik
Hi, better to use Aspose! i tried to use POI and there a lot of things which are not implemented yet! So i had a bif gemoroi with this POI libraray -- View this message in context: http://apache-poi.1045710.n5.nabble.com/Change-parts-of-text-in-Word-files-tp3258984p3259512.html Sent from the

Re: Change parts of text in Word files

2010-11-10 Thread Nick Burch
On Wed, 10 Nov 2010, katya wrote: I tried to get the xml representation of the document with document.getDocument().xmlText(), then replace what I need and finally create a new file from this xml. But the formatting is not exactly the same - the picture is gone, there is a problem with the numb

Change parts of text in Word files

2010-11-10 Thread katya
Hi, I'm starting a new project and I need a library that reads and writes Word files, so I started researching Apache POI. I have to upload the file on a server, replace certain parts of it and then return it to the user with the replaced text and preserved formatting. I tried to get the xml r

Write to table MS Word Document

2010-11-10 Thread j_tas...@yahoo.com
Dear All i have ms word document that's contains table, i try to modify the text in that table using Appache API, but after processing the file become corrupted , is ther any idea plz? here is the code public void testWriter (){ FileInputStream fis; try { fis = new FileInputStream("c: jaber.do

XSSFChart?

2010-11-10 Thread Miguel Gomez
Hello, I'm trying to get the Charts of a sheet in Office 2007 with poi 3.7 final, but I can´t. Is it possible? In office 2003 is easy: HSSFChart[] listChart = HSSFChart.getSheetCharts(sheet); The type XSSFChart don´t exist, which is the equivalent? Best Regards and thank you ---

RE: Hidden Rows in Manually-Created Sheets

2010-11-10 Thread Olivier.Masseau
--- Begin Message --- Hello, I also had this problem recently. I don't know why but getHidden() always returns false indeed. Try instead to call: row.getZeroHeight(). It worked for me. - om -Original Message- From: Jonathan Pittar