Tagged Questions

0
votes
1answer
29 views

OpenOffice PDF Export Library

I am looking for a library which will allow me to render text and graphics output onto a PDF document. (Cairo is certainly an option.) I would like to know how OpenOffice writes PDF files to see if I …
0
votes
1answer
86 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#): // …
4
votes
2answers
223 views

Mail Merge with Open Office from C# .NET

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 …
1
vote
1answer
82 views

how to export a checkbox to a .doc document in OpenOffice ?

Hi all, 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. I'm basically looking for a …
0
votes
1answer
64 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
42 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
0answers
14 views

How to link external variables in an Open Office Writer document?

Hi, I would like to update a odt with some external variables like version number. I know I can add variables, but the value of those variables are internal to the document. Perhaps with a formula?
0
votes
1answer
152 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 …
1
vote
0answers
97 views

OpenOffice API - OptimalWidth option for table(all columns)

I am working on Java API which interacts with OpenOffice(swriter) through UNO. For TextTable, I am having hard time setting TableColumn's "OptimalWidth" property. I have tried the following code and …
0
votes
1answer
116 views

Color palette in openoffice writer

How to load another color palette (*.soc file) in openoffice writer?
1
vote
4answers
671 views

A good Code snippet tool or plugin for word documents?

Does anyone know of a good tool or plugin that enables MS Word or OpenOffice Writer to add code snippets to a document in a clean manner? I'm not sure if such a plug-in even exists, so redirecting …
0
votes
0answers
36 views

How can I update an embeded external drawing in OpenOffice Writer?

I have a drawing created in OpenOffice Draw, named drawing.odg. I also have a document created in OpenOffice Writer, named document.odt. In the document I inserted the drawing.odg file as a OLE object …
0
votes
0answers
30 views

textbox2 to contain text from textbox1 in openoffice

Already asked but no answer: Using OpenOffice.org Writer, one can easily make simple pdf forms (since Writer does XForms, and can export to PDF, and embed the form using FDF). I'd like to make a text …