Tagged Questions

1
vote
0answers
22 views

How do I reconnect to OpenOffice.org once it has been closed?

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. This works fine unless all …
0
votes
1answer
82 views

In OpenOffice, how do I check if my XComponentContext has been closed?

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#): // …
0
votes
1answer
101 views

Openoffice3.1 pyuno confusing errors

I'm trying to get the sample and other sample codes i find for pyuno running with openoffice 3.1.1 and python 2.5 with no luck. Unfortunately, pyuno does not give any clues about what goes wrong. …
0
votes
1answer
147 views

How do you set the text direction for a TextTable Cell in OpenOffice?

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 …
0
votes
1answer
36 views

How do I set the properties for an XTextTable in OpenOffice.org uno using C#?

Discussion on OOoForum.org In python, I can do something like this: table.BreakType = PAGE_BEFORE table.HoriOrient = 0 table.RightMargin = 6.93 * 2540 - table_width In C#, I can't find a way to …
0
votes
1answer
58 views

How do I create an XTextTable in OpenOffice.org uno using C#?

Discussion on OOoForum.org In python, using pyuno, I can do it like this: table = self.model.createInstance("com.sun.star.text.TextTable") This doesn't seem to work in C#. Here is my test code (I …
0
votes
1answer
79 views

Using pyuno on Windows and CentOS

Is there any way to use OpenOffice's pyUno without using the version of python that comes with OpenOffice? I mean, can I install a package (on Windows and CentOS) that uses the version of python …
6
votes
2answers
226 views

What is the (single) best online source for learning OpenOffice.org scripting API

I am using OpenOffice.org for most of my not so very frequent Office Suite needs and most of the time it is more than adequate replacement for it's commercial alternative. Where it falls short though …
0
votes
3answers
514 views

Migrating Java UNO code from OpenOffice 2.4 to 3.0

I had a nifty small tool written to convert spreadsheets to plain text. Since it was my private hacker tool, it relied on OpenOffice 2.x to read the files. But when i installed OpenOffice 3 and tried …