Tagged Questions
4
votes
3answers
938 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
62 views
Open Office assembly folder
I googled "Open Office C#" and found a commonly reoccurring tutorial: http://www.opendocument4all.com/download/OpenOffice.net.pdf
The trouble is this portion (snippet from pdf):
Change from the ...
1
vote
3answers
1k views
OpenOffice with .NET: how to iterate throught all paragraphs and read text
How to iterate through all paragraphs in OpenOffice Writer document and output text.
I have Java examples, but don't know how to convert code to C#.
Java example could be found here: ...
1
vote
1answer
705 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#):
// ...
1
vote
1answer
785 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 ...
0
votes
0answers
362 views
modify docx with OpenXML SDK and open it with OpenOffice
I try to modify an docx-document with the OpenXML SDK and want to open it with OpenOffice.
But OpenOffice can't open, because the class "WordprocessingDocument" uses absolute paths in the XML-files ...
0
votes
1answer
475 views
Problems with OpenOffice Writer using C#
I am creating a OO Writer document with C#.
Any help would be appreciated - I no longer know whether I am coming or going, I have tried so many variations....
using C#, has anybody successfully got ...
0
votes
1answer
521 views
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 ...
0
votes
1answer
437 views
OpenOffice iterating through TextTable detect merged and split cells (calculate colspan and rowspan)
I am using OpenOffice uno api to iterate through all text in writer document. To iterate over text tables currently I am using XTextTable interface getCellNames() method. How I could detect merged and ...
0
votes
1answer
417 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
1answer
665 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 ...