The openoffice-basic tag has no wiki summary.
7
votes
3answers
723 views
Python in OpenOffice 3
I have a heap of Lotus 123 spreadsheets (not written by me) with Lotus Scripts in them doing an awful lot of leg work (moving data from one spreadsheet to another, and other things like that). I am ...
3
votes
1answer
170 views
OpenOffice Base - how to change height of Table Control in Macro?
I've got Table Control in Libre/OpenOffice Base form which is filled dynamically.
I want to change height of it to match number of rows.
How to do it?
I've tried changing getSize() / setSize(), and ...
3
votes
1answer
1k views
Programmatically convert *.odt file to MS Word *.doc file using an OpenOffice.org basic macro
I am trying to build a reStructuredText to MS Word document tool-chain, so I will be able to save only the rst sources in version control.
So far I --
Have rst2odt.py to convert reStructuredText to ...
2
votes
1answer
236 views
Open an OpenOffice Spreadsheet from a Writer Macro
I'm new to OpenOffice and I'm trying to port an MS Office macro over to OpenOffice Basic. I need to be able to open a Calc spreadsheet from Writer so I can dump its contents into an array in my Writer ...
1
vote
1answer
30 views
Get the formatted text of a range/cell object
I try to concatenate the formatted contents of some cells with a formula.
As I cannot see a way to solve it with a pure formula I add some basic code.
But I cannot figure out how to access the ...
1
vote
1answer
144 views
IsNumeric in Open Office Basic or VBA
Is there a function that tests for a string (non numeric) values and returns a boolean value in Open Office Basic?
I tried IsNumeric on a string and it returns a boolean False. But when I negate it ...
1
vote
1answer
288 views
Custom Array Functions in Open Office Calc
Could someone please tell me how to write a custom function in Open Office Basic to be used in Open Office Calc and that returns an array of values. An example of one such built-in function is ...
1
vote
1answer
169 views
Hide checkbox in OO BASIC
Hi
How I can hide check box in Open Office BASIC? I tried use:
chckbox.visible=false
but it doesn`t work.
thank you
1
vote
0answers
65 views
Open Office replace()
does Open Office BASIC support function replace(string,search string, replace with)?
1
vote
2answers
221 views
Open Office Basic cell.length
I have to check cells and when it is empty show MsgBox or something. So I`m looking for IsNull function or cell.length. Has BASIC some kind of this functions?
1
vote
2answers
295 views
OpenOffice BASIC IsNumber
I have to migrate document from MS Excel to Open Office with macros. Everythink works fine except this function
If Application.WorksheetFunction.IsNumber(Cells(12, 5)) = False Then
MsgBox ...
1
vote
1answer
898 views
OpenOffice Calc Macro: Run shell command and return output as result of custom function
I would like to write a custom OpenOffice function that runs a shell command and puts the result into the cell from which it was invoked.
I have a basic macro working, but I can't find a way to ...
0
votes
0answers
35 views
why can I access text properties through cursor object in OpenOffice?
I'm developing a simple script in OpenOffice Basic for Writer. I have a code like this:
vText = ThisComponent.Text
vc = ThisComponent.CurrentController.getViewCursor()
c = ...
0
votes
1answer
106 views
How to insert data to Open Office Base using Visual Basic?
I have a problem in inserting data from a sheet into database. Some people say that this can be done using (UNO) RowSet, but i find minimal example for this. Could anyone give my a sampe of this?
...
0
votes
0answers
72 views
How can I send keystrokes to an external application via OpenOffice's Basic?
I'm trying to get an old Excel macro to work.
Based on the information on the first 2 columns, if would run a series of commands on an telnet-like terminal window (actually it's IBM eNetwork Personal ...
0
votes
0answers
80 views
Autocompletion when programming for openoffice
This may be a stupid question but is there any way to get autocompletion when programming macros in StarBasic?
I know there's a plugin for eclipse if you want to program in java but I haven't been ...
0
votes
0answers
78 views
variable length arguments in OpenOffice.org Basic
I'm trying to write a custom function in the OpenOffice Calc. I want to do an aggregate operation on a set of similar cells. In a certain cell, I want to call something like =myfunc(A1,D3,E4). I ...
0
votes
1answer
412 views
Referring to adjacent cells in OpenOffice.org BASIC
I'm trying to calculate F-scores (using the formula 2 * a * b / (a + b)) in OpenOffice.org Calc, and would like a and b to be the previous two cells in the same row.
My problem is that while trying ...