Use this tag for question about Uno which is the component model of OpenOffice.org.
Questions tagged [uno]
251 questions
0
votes
1 answer
Problems intalling dict_en.oxt
I am new to OpenOffice, so, as my Italian friend here say... takaht eeeasy.
In trying to install dict-en, I get an error that reads:
..\AppData\Roaming\OpenOffice\4\user\uno_package\cache\uno_packages\sv1mgoq1.tmp_\dict_en.oxt does not exist
OO…

Jamiil
- 59
- 5
0
votes
2 answers
LibreOffice UNO Writer get cell name
I need to merge cells in a Writer table, but I'm having problems finding the name of the cell I have.
XCell xCell = getCell(column, row);
XTextTableCursor textTableCursor = null;
try {
textTableCursor =…

John Manko
- 1,828
- 27
- 51
0
votes
0 answers
OpenOffice: Build Stop working
I am getting following error while trying to create OXT file. Prior to that, OS crashed and thing got closed abruptly.
I am unable to read what these boxes mean

Volatil3
- 14,253
- 38
- 134
- 263
0
votes
1 answer
Extract macro from Office document using pyUNO
I've got a Microsoft Word document with an embedded macro. I've managed to load a document using this example Loading a document on OpenOffice using an external Python program
Now I'm trying to get macros code from my document, but can't figure, how…

BSen
- 187
- 2
- 16
0
votes
2 answers
Connect XPage with OpenOffice
I have a button on an XPage where I want to connect to a remote OpenOffice instance. OpenOffice is started and is listening for a socket connection.
The onclick event of the button runs following SSJS:
oo = new com.test.OpenOffice();
…

Detlef Birkholz
- 441
- 2
- 11
0
votes
2 answers
OOEclipse on Ubuntu with LibreOffice - "invalid OOo path"
I try to develop a LO extension in Java using Eclipse, but I can't get the OOEclipse plugin to work. Whenever I try to set the location of the LO installation, I get the "invalid OOo path" error.
I'm running
Ubuntu 10.04 LTS (I know, its…

Peter
- 379
- 4
- 13
0
votes
1 answer
Beginner with OO CLI to generate PDFs and Uno.Any issue in VB.Net
I'm a beginner in writing code that allows us (my company) to generate reports using the OpenOffice DLL allowing the generation of PDFs. I'm using ASP.NET, writing in VB. I need to be able to modify the cell of a table using the xPropertySet…

New Guy
- 566
- 1
- 8
- 28
0
votes
1 answer
Error "init registries failed, check your registry files." when compiling UNO add-in after switching to LibreOffice from OpenOffice
Having switched my development setup to LibreOffice 4 (from OpenOffice 3.3), the development of UNO add-ins (using Eclipse on MacOS X) fails with the exception "init registries failed, check your registry files". Why?
By switching development setup…

Christian Fries
- 16,175
- 10
- 56
- 67
0
votes
1 answer
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 set properties. XTableTable only has a few methods…

Matthew
- 28,056
- 26
- 104
- 170
0
votes
1 answer
Using pyUno to write text into Libre/OpenOffice Writer
I am trying to export some text from Python into a Libre/OpenOffice Writer document which I created according to these instructions.
For example, using
cursor.setPropertyValue("CharHeight", 20)
cursor.setPropertyValue("CharWeight",…

Jens
- 8,423
- 9
- 58
- 78
0
votes
1 answer
Issue running unoconv from php script with shell_exec
I am unable to use unoconv to convert a .doc to PDF from php using exec. Here is what I am trying:
$output = exec("unoconv /opt/bitnami/apache2/htdocs/=".$fileData['name']);
error_log(print_r($output, TRUE));
This command, when run in the console…

davis
- 1,911
- 6
- 26
- 50
0
votes
1 answer
LibreOffice UNO XStorage type name for Excel 2007/2010
I am trying to write a little utility that will convert from one spreadsheet type to another using LibreOffice (or OpenOffice, whatever), and I started by following the example here. It works fine and I can do some conversions, but I can't find the…

syazdani
- 4,760
- 1
- 26
- 35
0
votes
1 answer
How to get current value show in listbox in a cell for an Open Office Macro?
I am trying to yank the value from a listbox which is in a cell. Whenever I query the value however, it returns the first entry in the listbox, regardless of the current selection showing in the cell.
How do I access the current value displayed in…

CaffeineZombie
- 184
- 9
0
votes
1 answer
Getting the page count from the LibreOffice Java SDK
I'm developing an Java application which prints files selected by the user. The LibreOffice SDK/Uno seems perfect for this, since it allows me to print many different file types without relying on eternal GUIs (which is a must).
However, for this…

John Zeringue
- 705
- 3
- 13
0
votes
2 answers
programmatic creation of SetExpression fields in OpenOffice.org Writer
I'm trying to define "variables" in an openoffice document, and I must be doing something wrong because when I try to display the value of the variable using a field, I only get an empty string.
Here's the code I'm using (using the Python UNO…

gurney alex
- 13,247
- 4
- 43
- 57