active questions tagged openoffice.org - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T14:00:43Z http://stackoverflow.com/feeds/tag/openoffice.org http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1687635/pdf-conversion-service 1 PDF conversion service TheImdal 2009-11-06T13:36:33Z 2009-12-03T14:28:59Z <p>I need to develop a service able to convert MS Office and Open Office documents to PDF. And the PDF`s also need to be commentable when opened in ADOBE Reader.</p> <p>I have used a piece of software from www.neevia.com. And it does the conversion, but is not able to make the PDF´s commentable and is therefore useless in my scenario.</p> <p>Ideally I would like a piece of software that is monitoring a directory, and when a file is commited to that directory, the software detects this, fetches the file, converts it, and puts it in another directory. This way I can programmatically put the file I want converted in the IN folder and monitor the OUT folder to fetch the file when converted.</p> <p>So do anyone know a piece of software capable of converting MS Office and Open Office files to commentable PDF`s?</p> http://stackoverflow.com/questions/1142683/starting-openoffice-from-applet 0 Starting OpenOffice from applet cobranet 2009-07-17T11:22:07Z 2009-11-30T13:29:24Z <p>I have this code down and this working fine from command line ... But when I put this in applet I get following error </p> <p>com.sun.star.lang.IllegalArgumentException at com.sun.star.comp.bridgefactory.BridgeFactory.createBridge(BridgeFactory.java:158) at com.sun.star.comp.urlresolver.UrlResolver$_UrlResolver.resolve(UrlResolver.java:130)</p> <p>Anybody have solution for this problem ? Where I can find BridgeFactory source ? </p> <pre><code> Runtime.getRuntime().exec("C:/Program Files/OpenOffice.org 3/program/soffice.exe -accept=socket,host=localhost,port=8100;urp;StarOffice.ServiceManager"); // oooUrlW - the url of soffice.exe Thread.sleep(5000); XComponentContext xLocalContext = com.sun.star.comp.helper.Bootstrap.createInitialComponentContext(null); XMultiComponentFactory xLocalServiceManager = xLocalContext.getServiceManager(); Object urlResolver = xLocalServiceManager.createInstanceWithContext("com.sun.star.bridge.UnoUrlResolver",xLocalContext); XUnoUrlResolver xUnoUrlResolver = (XUnoUrlResolver) UnoRuntime.queryInterface(XUnoUrlResolver.class,urlResolver); Object initialObject = xUnoUrlResolver.resolve("uno:socket,host=localhost,port=8100;urp;StarOffice.ServiceManager"); XPropertySet xPropertySet = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class,initialObject); XComponentContext remoteContext = (XComponentContext) UnoRuntime.queryInterface(XComponentContext.class, xPropertySet.getPropertyValue("DefaultContext")); XMultiComponentFactory remoteServiceManager = remoteContext.getServiceManager(); Object desktop = remoteServiceManager.createInstanceWithContext("com.sun.star.frame.Desktop", remoteContext); xDesktop =(XDesktop) UnoRuntime.queryInterface( XDesktop.class, desktop); XComponent xCalcComponent = newDocComponent(xDesktop, "scalc"); XSpreadsheetDocument xCalcDocument = (XSpreadsheetDocument)UnoRuntime.queryInterface( XSpreadsheetDocument.class, xCalcComponent); XSpreadsheets a=xCalcDocument.getSheets(); Object o = a.getByName("Sheet1"); XSpreadsheet sheet = (XSpreadsheet)UnoRuntime.queryInterface( XSpreadsheet.class, o); XCell jjjj = sheet.getCellByPosition(0, 0); jjjj.setFormula("Some Text "); </code></pre> http://stackoverflow.com/questions/1819700/generate-odt-docx-and-convert-to-pdf-without-oo-o-ms 1 Generate ODT/DOC(X) and convert to PDF, without OO.o/MS Alan 2009-11-30T13:01:30Z 2009-11-30T13:20:04Z <p>I have a WSGI application that generates invoices and stores them as PDF.</p> <p>So far I have solved similar problems with FPDF (or equivalents), generating the PDF from scratch like a GUI. Sadly this means the entire formatting logic (positioning headers, footers and content, styling) is in the application, where it really shouldn't be.</p> <p>As the templates already exist in Office formats (ODT, DOC, DOCX), I would prefer to simply use those as a basis and fill in the actual content. I've found the Appy framework, which does pretty much that with annotated ODT files.</p> <p>That still leaves the bigger problem open, tho: converting ODT (or DOC, or DOCX) to PDF. On a server. Running Linux. Without GUI libraries. And thus, without OO.o or MS Office.</p> <p>Is this at all possible or am I better off keeping the styling in my code?</p> <p>The actual content that would be filled in is actually quite restricted: a few paragraphs, some of which may be optional, a headline or two, always at the same place, and a few rows of a table. In HTML this would be trivial.</p> <p>EDIT: Basically, I want a library that can generate ODT files from ODF files acting as templates and a library that can convert the result into PDF (which is probably the crux).</p> http://stackoverflow.com/questions/491318/how-to-do-mailmerge-in-openoffice-using-vb-net 0 How to do Mailmerge in Openoffice using Vb.net Savan Parmar 2009-01-29T11:56:12Z 2009-11-28T17:00:04Z <p>Hey All,</p> <p>Its 5th Question and apart of one i didnt get response from the experts....</p> <p>Hope this time i will get the helping hand.</p> <p>I want to do mailmerge in openoffice using Vb.net and i am totally new with openoffice. i searched on net for some help to understand how to use openoffice with vb.net but all i get is half info.....So can u plz help me and give me code for mailmerge in vb.net for openoffice.</p> http://stackoverflow.com/questions/1785588/how-to-use-openoffice-org-spell-checker-in-my-app-vb6 0 How to Use OpenOffice.org Spell Checker in My App (VB6) Daniel Silveira 2009-11-23T20:04:39Z 2009-11-24T13:22:10Z <p>It is possible to <a href="http://stackoverflow.com/questions/214805/vb6-0-mdi-spell-checker">use Microsoft Word to spell chek</a> an arbitrary document.</p> <p>What I want is to use OpenOffice.org to do the same.</p> <p>Is it possible? How?</p> http://stackoverflow.com/questions/1786614/how-do-i-reconnect-to-openoffice-org-once-it-has-been-closed 1 How do I reconnect to OpenOffice.org once it has been closed? Matthew 2009-11-23T22:48:38Z 2009-11-23T22:48:38Z <p>Here is a sample application that creates a Window with a single Button inside. When clicked, it connects to OOo (if not already connected) and creates a text document. </p> <p>This works fine unless all the documents created in OOo are closed. Then, I get a DisposedException when trying to create the next chart. This is understandable, but OOo has been closed. However, trying to reconnect at this point gives me a segfault. Is there a better way to reconnect? I am working on linux (Ubuntu). </p> <p>Note: This connects properly to OOo even if OOo is not open. It's once OOo has been opened by the application, then closed that we get the error. </p> <p>All you really need to look at is the Connect method. I just wrapped it in a Gtk interface for easy testing.</p> <pre><code>using System; using unoidl.com.sun.star.uno; using unoidl.com.sun.star.lang; using unoidl.com.sun.star.text; using unoidl.com.sun.star.frame; using unoidl.com.sun.star.beans; using Gtk; namespace TestOOo { class MainClass { static XComponentContext componentContext; static XMultiServiceFactory multiServiceFactory; static XComponentLoader loader; static XTextDocument document; public static void Main (string[] args) { Application.Init(); Window mainWindow = new Window("Test Window"); mainWindow.Visible = true; mainWindow.Destroyed += delegate { Application.Quit(); }; Button button = new Button(Stock.Ok); button.Clicked += delegate { Connect(); }; mainWindow.Add(button); mainWindow.ShowAll(); Application.Run(); } static void Connect() { // Connect to OOo if (componentContext == null) componentContext = uno.util.Bootstrap.bootstrap(); try { multiServiceFactory = (XMultiServiceFactory) componentContext.getServiceManager(); } catch { // This is where we want to reconnect, but trying to // bootstrap() again segfaults. // componentContext = uno.util.Bootstrap.bootstrap(); // multiServiceFactory = // (XMultiServiceFactory) componentContext.getServiceManager(); } loader = (XComponentLoader) multiServiceFactory.createInstance("com.sun.star.frame.Desktop"); document = (XTextDocument) loader.loadComponentFromURL ("private:factory/swriter", "_blank", 0, new PropertyValue[0]); } } } </code></pre> http://stackoverflow.com/questions/1780130/generate-odt-documents-with-dynamic-images-in-php 4 Generate ODT documents with dynamic images in PHP Pekka 2009-11-22T21:55:40Z 2009-11-23T21:00:01Z <p>I maintain a couple of web databases based on PHP and mySQL on a shared hosting package. The databases have a mechanism for the user to upload OpenOffice documents with placeholders:</p> <pre><code>[person.name] [person.address] [person.postcode] </code></pre> <p>I then use <a href="http://www.tinybutstrong.com/tbsooo.php" rel="nofollow">this great PHP tool</a> to run through the OpenOffice document and insert values from the database into it. The result is again, an OpenOffice document.</p> <p>What it can't do is <strong>dynamic images</strong>. </p> <p>Does anybody know a - preferably PHP-only - solution to insert images into OpenOffice documents?</p> <ul> <li>I know <a href="http://puno.sourceforge.net/install.html" rel="nofollow">PUNO</a>. Can't use it in this context because it's shared hosting.</li> <li>I know OpenOffice can be run as a daemon - ditto.</li> <li>I know <a href="http://phpdocwriter.sourceforge.net/" rel="nofollow">phpDocWriter</a>. It was great for SXW files but is dead now.</li> <li>I know OpenDocument is a collection of XML files in a ZIP file. I once tried to programmatically add a caption to every image in a ODT document. It drove me <em>fricking crazy</em>. I look with admiration upon developers who work with the format, but it's not for me. </li> </ul> <p>I would really appreciate any hints on existing solutions. </p> http://stackoverflow.com/questions/1526254/mail-merge-with-open-office-from-c-net 4 Mail Merge with Open Office from C# .NET SB 2009-10-06T15:15:10Z 2009-11-20T17:24:40Z <p>I need to be able to mail merge from an ASP.NET web form in C# .net to Open Office. I can connect with OpenOffice and open a file but that is where things stop at the moment. I have a table of mail merge items that need inserting into a document for each client on my system but I can't find anything on the internet that helps me perform the mail merge or even how to set the mail merge up.</p> <p>If anyone can show me a simple example merging forenames and surnames out of a database table into an Open Office mail merge form using C#, I would be very grateful.</p> http://stackoverflow.com/questions/1697667/in-openoffice-how-do-i-check-if-my-xcomponentcontext-has-been-closed 0 In OpenOffice, how do I check if my XComponentContext has been closed? Matthew 2009-11-08T19:44:35Z 2009-11-17T09:09:31Z <p>I have a small application that generates three different template documents in OOo Writer. When one of the three "generate" buttons is clicked, this is part of the code that is executed (in C#): </p> <pre><code>// Connect to OOo if (componentContext == null) componentContext = uno.util.Bootstrap.bootstrap(); XMultiServiceFactory multiServiceFactory = (XMultiServiceFactory) componentContext.getServiceManager(); XComponentLoader loader = (XComponentLoader) multiServiceFactory.createInstance ("com.sun.star.frame.Desktop"); // Initialize class members document, text, and cursor document = (XTextDocument) loader.loadComponentFromURL ("private:factory/swriter", "_blank", 0, new PropertyValue[0]); text = document.getText(); cursor = text.createTextCursor(); </code></pre> <p>The following steps cause a crash:</p> <ol> <li>The user generates a document.</li> <li>The user closes the document (closing OOo).</li> <li>The user tries to generate another document.</li> </ol> <p>This exception is thrown:</p> <pre><code>unoidl.com.sun.star.lang.DisposedException: URP-Bridge: disposed(tid=4) Unexpected connection closure </code></pre> <p>How do I check to make sure the connection is still open before trying to generate another chart? And how do I reconnect if it has been closed?</p> <p>Edit: More specifically, this is the complete error message:</p> <pre><code>Marshaling clicked signal Exception in Gtk# callback delegate Note: Applications can use GLib.ExceptionManager.UnhandledException to handle the exception. System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---&gt; unoidl.com.sun.star.lang.DisposedException: URP-Bridge: disposed(tid=4) Unexpected connection closure at com.sun.star.bridges.mono_uno.UnoInterfaceProxy.ConstructReturnMessage (Any result, System.Object[] args, uno.Typelib.InterfaceMethodTypeDescription* methodTD, IMethodCallMessage callmsg, Any exception) [0x00000] at com.sun.star.bridges.mono_uno.UnoInterfaceProxy.Invoke (IMessage request) [0x00000] at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke (System.Runtime.Remoting.Proxies.RealProxy rp, IMessage msg, System.Exception&amp; exc, System.Object[]&amp; out_args) [0x00000] --- End of inner exception stack trace --- at System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00000] at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] at System.Delegate.DynamicInvokeImpl (System.Object[] args) [0x00000] at System.MulticastDelegate.DynamicInvokeImpl (System.Object[] args) [0x00000] at System.Delegate.DynamicInvoke (System.Object[] args) [0x00000] at GLib.Signal.ClosureInvokedCB (System.Object o, GLib.ClosureInvokedArgs args) [0x00000] at GLib.SignalClosure.Invoke (GLib.ClosureInvokedArgs args) [0x00000] at GLib.SignalClosure.MarshalCallback (IntPtr raw_closure, IntPtr return_val, UInt32 n_param_vals, IntPtr param_values, IntPtr invocation_hint, IntPtr marshal_data) [0x00000] at GLib.ExceptionManager.RaiseUnhandledException(System.Exception e, Boolean is_terminal) at GLib.SignalClosure.MarshalCallback(IntPtr raw_closure, IntPtr return_val, UInt32 n_param_vals, IntPtr param_values, IntPtr invocation_hint, IntPtr marshal_data) at Gtk.Application.gtk_main() at Gtk.Application.Run() at TestDrive.MainClass.Main(System.String[] args) in /home/matthew/Dropbox/OpenSBS-mono/TestDrive/Main.cs:line 28 The application was terminated by a signal: SIGHUP </code></pre> <p>If I get rid of the line <code>if (componentContext == null)</code> (i.e., always try to connect, even when we have already connected), I get a stacktrace accompanied by this message:</p> <pre><code>================================================================= Got a SIGSEGV while executing native code. This usually indicates a fatal error in the mono runtime or one of the native libraries used by your application. ================================================================= </code></pre> <ul> <li><a href="http://www.oooforum.org/forum/viewtopic.phtml?p=347312" rel="nofollow">Discussion on OOoForum.org</a></li> </ul> http://stackoverflow.com/questions/239009/getting-pywin32-to-work-inside-open-office-2-4-built-in-python-2-3-interpreter 0 getting pywin32 to work inside open office 2.4 built in python 2.3 interpreter Setori 2008-10-27T03:32:24Z 2009-11-16T13:00:01Z <p>I need to update data to a mssql 2005 database so I have decided to use adodbapi, which is supposed to come built into the standard installation of python 2.1.1 and greater.</p> <p>It needs pywin32 to work correctly and the open office python 2.3 installation does not have pywin32 built into it. It also seems like this built int python installation does not have adodbapi, as I get an error when I go import adodbapi. </p> <p>Any suggestions on how to get both pywin32 and adodbapi installed into this open office 2.4 python installation?</p> <p>thanks </p> <p><hr /></p> <p>oh yeah I tried those ways. annoyingly nothing. So i have reverted to jython, that way I can access Open Office for its conversion capabilities along with decent database access.</p> <p>Thanks for the help.</p> http://stackoverflow.com/questions/1189798/open-office-org-calc-spreadsheet-limit-of-64k-rows 0 Open Office org Calc (spreadsheet): limit of 64k rows? StaxMan 2009-07-27T18:25:37Z 2009-11-13T01:29:46Z <p>I was using a not-so-up-to-date version of OOo.calc (Open Office Spreasheet component, version 2.04, default for RHEL 5), and bumped into a nasty surprise. When trying to import a csv file (with about 100k row), it said that there is a limitation of max 64k rows, and that remaining rows would just be discarded. I was planning to have users use OOo for client-side processing of large sample sets, to be uploaded to server for processing (and possibly returning results as a spreadsheet), but such a limitation would effectively kill that approach.</p> <p>Does anyone know if a later versions might have lifted this limit? If not, I will need to consider alternative spreadsheet apps; so if anyone knows of good alternatives beyond Excel (which I am aware of :) ), feel free to share.</p> <p>EDIT: after downloading and testing OOo 3.1, I found out that unfortunately this limit still exists in its original form. <strong>OOo spreadsheets can not have more than 65536 rows, even with version 3.1</strong></p> http://stackoverflow.com/questions/1474785/how-do-i-compile-openofficeuno-for-solaris-10 0 How do I compile OpenOffice::UNO for Solaris 10? melling 2009-09-25T00:03:52Z 2009-11-12T21:24:35Z <p>I want to use OpenOffice with Perl to create some PDFs. However, I can't seem to get the <a href="http://search.cpan.org/dist/OpenOffice-UNO" rel="nofollow">OpenOffice::UNO</a> module installed on Solaris/OpenSolaris: .</p> <p>The module was recently updated but it doesn't really seem to support Solaris 10. I got around this in the <code>Makefile.PL</code> but the <code>UNO.c</code> file doesn't compile. I was wondering if people use this module on Solaris or are there other options that work with Perl?</p> http://stackoverflow.com/questions/1548081/keeping-text-on-same-page-in-openoffice-document 0 Keeping text on same page in OpenOffice document Paul Morrison 2009-10-10T14:22:19Z 2009-11-12T21:23:46Z <p>I am converting a bunch of html pages into an OpenOffice document (.odt), which will then be converted to a PDF. Is there any way to get a bunch of text lines to stay on the same page (like the keep function of old formatters) (apart from turning it into a diagram)?</p> http://stackoverflow.com/questions/1618833/openoffice3-1-pyuno-confusing-errors 0 Openoffice3.1 pyuno confusing errors damnsweet 2009-10-24T19:24:17Z 2009-11-12T21:23:20Z <p>I'm trying to get the <a href="http://wiki.services.openoffice.org/wiki/PyUNO_bridge" rel="nofollow">sample</a> and other sample codes i find for pyuno running with openoffice 3.1.1 and python 2.5 with no luck. </p> <p>Unfortunately, pyuno does not give any clues about what goes wrong.</p> <pre> In [1]: import uno In [2]: local = uno.getComponentContext() In [3]: resolver = local.ServiceManager.createInstanceWithContext("com.sun.star.bridge.UnoUrlResolver", local) --------------------------------------------------------------------------- com.sun.star.uno.RuntimeException Traceback (most recent call last) /opt/openoffice.org/basis3.1/program/ in () com.sun.star.uno.RuntimeException: : 'tuple' object has no attribute 'getTypes', traceback follows no traceback available </pre> <p>below is the output of execution of /opt/openoffice.org/basis3.1/program/officehelper.py which basically boots the headless office instance and returns a related context object.</p> <pre> den@ev:/opt/openoffice.org/basis3.1/program > python officehelper.py Traceback (most recent call last): File "officehelper.py", line 42, in from com.sun.star.connection import NoConnectException File "uno.py", line 273, in _uno_import RuntimeException = pyuno.getClass( "com.sun.star.uno.RuntimeException" ) RuntimeError: pyuno.getClass: expecting one string argument </pre> <p>pyuno takes only 1 argument and it hasto be a string, as defined in <a href="http://udk.openoffice.org/source/browse/udk/pyuno/source/module/pyuno%5Fmodule.cxx?rev=1.14&amp;view=markup" rel="nofollow">http://udk.openoffice.org/source/browse/udk/pyuno/source/module/pyuno%5Fmodule.cxx?rev=1.14&amp;view=markup</a> i could not manage to get pyuno.getClass work anyway.</p> <p>any suggestions about how to get pyuno working?</p> http://stackoverflow.com/questions/1624304/generating-documents-in-multiple-applications 1 Generating documents in multiple applications ZippyV 2009-10-26T11:30:55Z 2009-11-11T20:33:40Z <p>I need to create an application that generates a bunch of templates for Office (2000), OpenOffice.org (2.0) and Indesign. The design of the templates will be made in each application but we need a system for placeholders so that my application opens a template, replaces the placeholder with some text (like a name, address, phone number) and saves the document.</p> <p>What is the best way to work with these placeholders? My idea would be to define a placeholder using square brackets like [address], [phone] and then do a search and replace with content I retrieve from a database. Indesign allows to create named textboxes so I just have to insert text in the right textbox.</p> <p>Does anyone have a better idea?</p> http://stackoverflow.com/questions/781686/automatic-field-update-of-current-svn-revision-for-word-openoffice-document 2 Automatic field update of current SVN revision for Word/Openoffice document Craig McQueen 2009-04-23T13:28:09Z 2009-11-09T19:45:45Z <p>Subversion's "keyword" feature is great to automatically tag text files with the revision number. I'd really like to do a similar thing for Word and/or OpenOffice documents.</p> <p>I tried this with Word documents, by inserting a "fixed-width" keyword substitution into the "comment" document properties field. But it seemed to still corrupt the document somehow (plus I don't know what "fixed-width" might mean in the case of multi-byte characters). I also didn't like this idea because it would not be good for inserting the number in the printable part of the document itself.</p> <p>What I'm imagining now is a macro that automatically runs on document open, and updates a custom document property. The document could contain doc property reference fields that get updated with the value stored in the doc property.</p> <p>Has anyone done this, or done anything else to achieve this goal? For either Word or OpenOffice?</p> http://stackoverflow.com/questions/50306/is-it-possible-to-do-the-navision-5-0-export-to-word-excel-to-openoffice-org 0 Is it possible to do the Navision 5.0 export to Word/Excel to OpenOffice.org? Randy Orrison 2008-09-08T18:03:18Z 2009-11-06T09:07:00Z <p>Navision 5.0 includes a feature to export to Word or Excel. Is it possible to make this work with OpenOffice.org Writer or Calc instead? If so, what has to be done to set it up?</p> <p>I have been told by my Navision reseller that the feature works best with Office 2007, and export to Excel 2003 works. No mention of Office 2000 (which is what we mostly have installed currently) or OpenOffice.org. I'm hoping to be able to standardise on OpenOffice.org across the company when 3.0 is released, to avoid the expense of upgrading everyone to Microsoft Office 2007.</p> http://stackoverflow.com/questions/223370/what-are-the-major-drawbacks-to-using-openoffice-db-vs-microsoft-access 5 What are the major drawbacks to using OpenOffice DB vs. Microsoft Access? Joshery 2008-10-21T20:27:01Z 2009-11-03T20:28:15Z <p>I know that Open Office Database uses a java database backend. Does anyone have any insight on how this compares to the Jet Database Engine? </p> <p>Also is the query designer/reporting nearly as robust as MS Access?</p> http://stackoverflow.com/questions/898739/how-do-you-set-the-text-direction-for-a-texttable-cell-in-openoffice 0 How do you set the text direction for a TextTable Cell in OpenOffice? Matthew 2009-05-22T16:24:54Z 2009-11-02T23:10:02Z <p>I want to set the text direction for some cells in a TextTable so that they are vertical (i.e., the text is landscape instead of portrait). You can do this in Writer by selecting the cell(s), and going to: Table - Text Properties - Text Flow - Text Direction</p> <p>However, I cannot figure out how to do this through the API. I tried using CharRotation, but it does not behave the right way. CharRotation simply takes the text, and rotates it (without adjusting any formatting). The text I am dealing with is formatted by tab stops, and does not behave correctly when rotated this way.</p> http://stackoverflow.com/questions/1651901/what-do-i-need-to-do-in-order-to-get-openoffice-org-calc-to-read-the-vba-code-in 3 What do I need to do in order to get OpenOffice.org Calc to read the VBA code in an Excel file? Ben McCormack 2009-10-30T19:42:39Z 2009-10-31T18:42:55Z <p>My employer is considering installing OpenOffice.org's suite of Office products instead of using Microsoft Office. I've written several advanced applications in Access and Excel, and I'm trying to figure out what will and will not be compatable with OpenOffice.org. </p> <p>Specifically, what do I need to do to have Calc (OpenOffice.org's version of Excel) read and execute VBA in macro's and tie macro events to button clicks?</p> <p>Also of note, I'm using the MySQL Connector from within Excel to dynamically update data in the spreadsheet. What might I need to do to preserve data connectivity to our MySQL server?</p> <p>Thanks</p> http://stackoverflow.com/questions/1595724/how-to-export-a-checkbox-to-a-doc-document-in-openoffice 1 how to export a checkbox to a .doc document in OpenOffice ? nraynaud 2009-10-20T16:06:31Z 2009-10-28T19:23:30Z <p>Hi all, </p> <p>I use OpenOffice through the java API, and make him open the .odt file, fill in some values and save as .doc and .pdf. The .doc have no checkboxes in it. </p> <p>I'm basically looking for a workaround of <a href="http://www.openoffice.org/issues/show%5Fbug.cgi?id=45347" rel="nofollow">bug 45347</a> </p> <p>Correcting the bug by myself is not an option since a checkout of the openoffice code takes more than 10h (various Go of stuff), and I never managed to carry out a compilation of it.</p> <p>Thanks, </p> <p>Nico.</p> http://stackoverflow.com/questions/1595921/how-do-i-set-the-properties-for-an-xtexttable-in-openoffice-org-uno-using-c 0 How do I set the properties for an XTextTable in OpenOffice.org uno using C#? Matthew 2009-10-20T16:44:58Z 2009-10-23T02:23:54Z <p><a href="http://www.oooforum.org/forum/viewtopic.phtml?p=345040" rel="nofollow">Discussion on OOoForum.org</a></p> <p>In python, I can do something like this:</p> <pre><code>table.BreakType = PAGE_BEFORE table.HoriOrient = 0 table.RightMargin = 6.93 * 2540 - table_width </code></pre> <p>In C#, I can't find a way to set properties. XTableTable only has a few methods available to it, and none of them seem to do anything like this. How do I set properties in C#?</p> http://stackoverflow.com/questions/522660/html-formatting-problem-ms-word-document-generation-with-openoffice-2-4 0 HTML formatting Problem : MS Word Document Generation with OpenOffice 2.4 unknown (google) 2009-02-06T23:28:31Z 2009-10-20T21:00:02Z <p>I am using Openoffice.org to convert HTML document into a Microsoft Word document. We used divs to create a formatting block, but Openoffice is ignoring it. So we are forced to use tables and those, too are spilling out of the generated Word document on the right side. So i was wondering if there was any other way, where I can have formatted text separated by tabs (or a certain number of space)</p> <p>Our text blocks in the Word document should look like below:</p> <pre><code>Area: Area2 Sales: Combined Sales: Area A Pound 0.aaaa /unit Surcharge: Pound 0.aaaa /unit </code></pre> <p>Wishing you a wonderful weekend!!!</p> <p>Suhaas</p> http://stackoverflow.com/questions/1583307/how-do-i-create-an-xtexttable-in-openoffice-org-uno-using-c 0 How do I create an XTextTable in OpenOffice.org uno using C#? Matthew 2009-10-17T21:42:25Z 2009-10-18T18:01:43Z <p><a href="http://www.oooforum.org/forum/viewtopic.phtml?p=344752#344752" rel="nofollow">Discussion on OOoForum.org</a></p> <p>In python, using pyuno, I can do it like this:</p> <pre><code>table = self.model.createInstance("com.sun.star.text.TextTable") </code></pre> <p>This doesn't seem to work in C#. Here is my test code (I realize I probably don't need all those using statements, but I am adapting someone else's code):</p> <pre><code>using System; using unoidl.com.sun.star.lang; using unoidl.com.sun.star.uno; using unoidl.com.sun.star.bridge; using unoidl.com.sun.star.frame; using unoidl.com.sun.star.document; using unoidl.com.sun.star.text; using unoidl.com.sun.star.container; using unoidl.com.sun.star.util; using unoidl.com.sun.star.table; using unoidl.com.sun.star.beans; namespace FromScratch { class MainClass { public static void Main(string[] args) { XComponentContext componentContext = uno.util.Bootstrap.bootstrap(); XMultiServiceFactory multiServiceFactory = (XMultiServiceFactory) componentContext.getServiceManager(); XTextDocument document; XComponentLoader loader = (XComponentLoader) multiServiceFactory.createInstance ("com.sun.star.frame.Desktop"); document = (XTextDocument) loader.loadComponentFromURL ("private:factory/swriter", "_blank", 0, new PropertyValue[0]); XText text = document.getText(); XTextCursor cursor = text.createTextCursor(); XTextTable table = (XTextTable) multiServiceFactory.createInstance ("com.sun.star.text.TextTable"); table.initialize(2, 2); text.insertTextContent(cursor, table, false); } } } </code></pre> <p>Most of it seems to work fine, but when it gets to this line:</p> <pre><code>table.initialize(2, 2); </code></pre> <p>I get a runtime error:</p> <pre><code>Unhandled Exception: System.NullReferenceException: Object reference not set to an instance of an object at FromScratch.MainClass.Main (System.String[] args) [0x00063] in /home/matthew/Desktop/OpenOfficeSample/FromScratch/Main.cs:37 </code></pre> <p>Apparently, this line:</p> <pre><code>XTextTable table = (XTextTable) multiServiceFactory.createInstance ("com.sun.star.text.TextTable"); </code></pre> <p>doesn't actually set table to anything.</p> <p>What is going on here?</p> http://stackoverflow.com/questions/1559291/openoffice-in-java 1 openoffice in java unknown (google) 2009-10-13T10:08:39Z 2009-10-13T13:40:38Z <p>I need a Java interface to the OpenOffice document conversion which would equal to a manual (Open... and then Save As...) as well as access to the PDF generation.</p> <p>The following are some example of what i want to achieve.</p> <p>1) Open one type of document (fx. OpenOffice Writer document or Microsoft Office document) onto memory and save it in another supported format.</p> <p>2) Open one type of document into memory and export it as PDF.</p> <p>I have gone through <code>http://api.openoffice.org</code> but dint get any material which can help me to get started. I also tried JODConverter but it requires me to run openoffice as a service. I wold prefert to include all the core functionality of openoffice in one jar file so that that the user can use my application without installing or running openoffice on their pc</p> <p>Can any one giv me some help / url/code snippet frm where i can get tutorilas to get started? Also tell me if i have to add some jars? Will the application work even if i dont have open office not installed on my pc?</p> http://stackoverflow.com/questions/1504282/how-to-map-an-xml-schema-to-an-opencalc-spreadsheet-cell-and-export-cell-data-as 1 How to map an XML schema to an OpenCalc spreadsheet cell and export cell data as an XML data file Palladin 2009-10-01T14:24:31Z 2009-10-01T14:24:31Z <p>I have created an XML schema for storing data. I want to provide a simple user interface with OpenCalc spreadsheet for data entry. </p> <p>Things which I wanted to do.</p> <ol> <li>Map my XML schema elements to cells of a spreadsheet.</li> <li>Provide this spreadsheet as an user interface for data entry.</li> <li>Export the entered data as an XML data file. (The exported XML data file should have the tag elements defined in the XML schema mapped to the appropriate data entered by the user)</li> </ol> <p>About the XML schema:</p> <ol> <li>None of the schema elements have attributes.</li> <li>The XML schema has repeating elements. i.e , An element can be present more than one time in the XML data file.</li> </ol> <p>Is it possible to do this in OpenCalc?</p> http://stackoverflow.com/questions/1491452/how-can-i-tell-which-application-of-openoffice-is-running 0 How can I tell which application of openoffice is running? Phil Hannent 2009-09-29T09:16:52Z 2009-09-29T10:27:51Z <p>I want to look in the list of processes to determine if OpenOffice Calc is running or if OpenOffice Writer is running. With QuickStart off, I get a scalc.exe and an swriter.exe so its simple.</p> <p>However when the quick start is on I just get soffice.bin and soffice.exe</p> <p>Is there a way of asking those processes which application is running?</p> http://stackoverflow.com/questions/1447457/uuid-in-openoffice-org-base 0 UUID in OpenOffice.org Base Andrew Russell 2009-09-19T01:34:14Z 2009-09-19T01:53:41Z <p><strong>How would one go about using a UUID as a primary key in an OpenOffice.org Base database?</strong></p> <p>I have a need to gather data on multiple, unnetworked PCs that I can't install software on (I am using OpenOffice.org Portable). After gathering data, it will be merged into a single database.</p> <p>I believe that a UUID/GUID is the ideal solution, but for all my Googling and fiddling with the software, I can't figure out how to actually implement it.</p> <p>(If there is no solution, is there any alternate approach?)</p> http://stackoverflow.com/questions/556864/how-to-find-true-cause-of-com-sun-star-uno-runtimeexception 0 How to find true cause of com.sun.star.uno.RuntimeException? Andrej 2009-02-17T13:49:54Z 2009-09-12T08:59:59Z <p>Hi,</p> <p>I'm trying to replace a field in an openoffice document using the openoffice java api. I'm using the insertString method:</p> <pre><code> xText.insertString(((XTextField) fieldMaster).getAnchor(), value.toString(), false); </code></pre> <p>The stacktrace is as follows:</p> <pre><code> [junit] com.sun.star.uno.RuntimeException: [junit] at com.sun.star.lib.uno.environments.remote.Job.remoteUnoRequestRaisedException(Job.java:182) [junit] at com.sun.star.lib.uno.environments.remote.Job.execute(Job.java:148) [junit] at com.sun.star.lib.uno.environments.remote.JobQueue.enter(JobQueue.java:344) [junit] at com.sun.star.lib.uno.environments.remote.JobQueue.enter(JobQueue.java:313) [junit] at com.sun.star.lib.uno.environments.remote.JavaThreadPool.enter(JavaThreadPool.java:101) [junit] at com.sun.star.lib.uno.bridges.java_remote.java_remote_bridge.sendRequest(java_remote_bridge.java:652) [junit] at com.sun.star.lib.uno.bridges.java_remote.ProxyFactory$Handler.request(ProxyFactory.java:154) [junit] at com.sun.star.lib.uno.bridges.java_remote.ProxyFactory$Handler.invoke(ProxyFactory.java:136) [junit] at $Proxy14.insertString(Unknown Source) ... </code></pre> <p>If i interpret this correctly, it's telling me that it connected to a different proces from java, something in the other proces failed, but it's not telling me what the problem is.</p> <p>I found that there are some environment variables (PROT_REMOTE...) that would let me log messages from these remote (different process, same computer, btw) processes, but only if i run an openoffice version with debugging enabled?</p> <p>I'm using an openoffice version from an deb repository on ubuntu, and have to interest in compiling my own openoffice version.</p> <p>Is there any way i can get some useful error messages from the remote process to help me understand why my code is failing?</p> <p>Thanks, Andrej</p> http://stackoverflow.com/questions/745393/how-do-i-convert-a-document-from-latex-into-microsoft-word-2003 5 How do I convert a document from Latex into Microsoft Word 2003? joshuascotton 2009-04-13T21:03:31Z 2009-09-09T03:44:44Z <p>I need to find a way to quickly convert a latex document into a Microsoft Word 2003 document.</p> <p>I'm using Kile to edit latex documents on Ubuntu at present.</p> <p>I can do it the following way:</p> <pre><code>latex filename.tex tex4ht filename.tex mk4ht oolatex filename.tex </code></pre> <p>then I have to open the resulting filename.odt document in OpenOffice and save as a Word Document.</p> <p>Is there anyway I do this in a single step?</p> <p>I can write a program to run the initial three lines, I'm more interested in the conversion from odt to doc without using openoffice.</p> <p>It would be even better if I could find a way to convert straight from filename.tex to filename.doc</p>