[libreoffice-users] Re: UNO with Libreoffice 5 (64-Bit, Win) and Java

2015-08-22 Thread Aurelius Octavian
Salve Stephan, Thanks for your kind reply. I too thought it should work, but to my disappointment it doesn't so far, unfortunately. The exact same configuration runs however when I use Libreoffice (LO) v5 in 32-Bit being UNO-called from within a JVM 32-Bit. (I'm using the moveable 32-Bit LO

[libreoffice-users] calc/update problem

2015-08-22 Thread Robert Peirce
I have all my spreadsheets set up the same way. They use about half the vertical screen. Every time a new update comes along, the cell spacing gets slightly changed. This means part of the next cell appears at the bottom of the sheet or when I move to the bottom cell it spaces up one when

Re: [libreoffice-users] Re: Save UNO state?

2015-08-22 Thread X Roemer
Hi, I wrote some code some time ago. The code also checks the differences between two states of an object. The first part is similar to yours, it's also a recursive function, but it creates a dict and you can use a level to stop searching, so you won't get an infinite cycle. The second part

Re: [libreoffice-users] Re: Save UNO state?

2015-08-22 Thread Piet van Oostrum
Hi-Angel wrote: Okay, I wrote a python code that explores every property, and doesn't fall into an infinite cycle. It is [...] However it produces too much output, e.g. from a test document it produced 1gb of output. I think the problem is that most elements still appears in output

Re: [libreoffice-users] Re: Save UNO state?

2015-08-22 Thread Hi-Angel
Okay, I wrote a python code that explores every property, and doesn't fall into an infinite cycle. It is def printUNO(parent, listChecked): try: for propName in dir(parent): if str(propName)[0].islower(): #function, skip continue try: