Questions tagged [openoffice-writer]

related to OpenOffice.org Writer, a word processing application which is similar to Microsoft Word.

229 questions
0
votes
1 answer

Macro to Select/Highlight a cell in a table in OpenOffice and clones

I am writing a Basic macro in NeoOffice (a mac OO clone) and I want to highlight/select the cell in the table the cursor is in at the time the macro runs. Google gave me the following related snipset, and it does color the cell, but I want to…
0
votes
1 answer

Error when I use Open Office API in ASP .NET

I use an Open Office API in my ASP .NET application for reading text content from *.doc files. public static bool getTextV2(string siteURL, string[] search) { //Create a new ServiceManager Type object Type tServiceManager =…
Sir Hally
  • 2,318
  • 3
  • 31
  • 48
0
votes
1 answer

Simple OpenOffice Basic Code to possibly create and set a variable field

I am not familiar to OpenOffice Basic, but I need a simple macro code for setting document variables (user defined fields accessable under "field commands"/"Variables" in GUI) that I can assign to a button. Example: I create a button A calling macro…
0
votes
1 answer

Open Office - Bold alternating lines

I would like to be able to bold alternating lines for a huge odt document. The document is too large to do this manually. Is there a way to do this?
user2806040
0
votes
1 answer

How to hide text on latest page of document and show it on others on OpenOffice/LibreOffice?

I need to show different text in footer, e.g. set note "Continued on next page" on footer of all pages except latest one. The task seems simple but I haven't found any docs how to do that... I tried to create hidden variable outside of footer and…
Paul Serikov
  • 2,550
  • 2
  • 21
  • 36
0
votes
1 answer

Openoffice merged cells splits when uploaded on google drive

I have an openoffice writer document which has a teble with merged cells. When I upload the document on the google drive the merged cells gets spited and mixed. I have also tried to use nested tables insted of merging cells but the result is not…
Christoforos
  • 564
  • 3
  • 13
0
votes
1 answer

How to change position of text shape in OpenOffice API for Java?

I'm try to use Nice Office Access (NOA) to embbed OpenOffice Writer to my OCR program. I can add text shape to document see code below, but I don't know how to change its position. Someone help me! try { // Init office HashMap configuration…
0
votes
1 answer

Access to com.sun.star.text.textfield.Annotation in {Libre,Open}Office Writer using Java

I am using Java to iterate over all Paragraphs and TextPortions within a XText object. When I check the TextPortionType: XPropertySet props= UnoRuntime.queryInferface(XPropertySet.class, portion); String portionType=…
Jens Jensen
  • 1,038
  • 1
  • 10
  • 20
0
votes
1 answer

How to put bullets in rml/openoffice

i want to add bullets in openoffice for each optional product in OpenERP [[repeatIn(o.order_line,'line')]] [[repeatIn(line.product_id.product_ids, 'optionals')]] [[optionals.name]].......................[[optionals.list_price]] + IVA the point is…
dccdany
  • 826
  • 7
  • 17
0
votes
1 answer

Openerp Base report designer add a new field from a different object (base_report_designer)

In purchase order order.swx I need to show a new field(ean13) in line items rows, which comes from product.product object. How can I do it using base_report_designer and openoffice writer? I have seen fields taken from taxes field like [[ ',…
Kannan_SJD
  • 1,022
  • 2
  • 13
  • 32
0
votes
1 answer

How to hide fields in OpenERP report using OpenOffice?

I'm new to OpenOffice and I don't know how to do it. I have two fields one is text field and the other one is boolean (namely text_field and boolean_field), I just wanted to disable and enable the visibility of the text field and its column…
noble_man
  • 352
  • 3
  • 20
0
votes
1 answer

Find and Move Text in OpenOffice Spreadsheet

Is it possible to search for a specific text in cells and move it? For example: "ABCD [45] - City" Result: "[45] ABCD - City"
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

Images inside a .odt document: knowing where it is and copying it to another document

I am developing an application that opens one or more .odt documents, and lets N different clients to see and edit those documents, not the same part at the same time. The point is, I need to copy a part or a whole document to another new document,…
Kvothe
  • 19
  • 2
0
votes
1 answer

error printing report )?

I want to print a report. I have a module named partnership is under the addons folder. and under the partnership folder I carry the folder that contains new_report.rml new_report.sxw and new_report.py class containing this code: import time from…