[api-dev] XForms

2006-03-17 Thread Vincenzo Giuliano
Hi ALL, I have a question for you. Does OpenOffice Release exist which support the XForms standard? Thanks. Vincenzo - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[api-dev] Re:Re:digital signature openoffice

2006-03-15 Thread Vincenzo Giuliano
Joachim Lingner wrote: There is an unpublished service com.sun.star.security.DocumentDigitalSignatures which implements com.sun.star.security.XDocumentDigitalSignatures. If the IDL is not marked explicitely with published then it means that the respective element is NOT part of the official

[api-dev] digital signature openoffice

2006-03-14 Thread Vincenzo Giuliano
Hi ALL, I have a question for you. Does somebody know if OpenOffice has API for digital signature management? Can somebody give me any links? Thank you. Regards, Vincenzo. - To unsubscribe, e-mail: [EMAIL PROTECTED] For

[api-dev] Re:Connecting two OpenOffice Process

2006-03-07 Thread Vincenzo Giuliano
Andreas Schlüns wrote: ... And sorry again. I do not know when OOo will be ready for these. It's a huge task and cant be made in some months. So you have to find another solution for your problem. Ok, no problem. Thank you very much. Regards, Vincenzo.

[api-dev] Re:Re: Re: Re: Re: OpenNewView snippet code

2006-03-03 Thread Vincenzo Giuliano
Tom Schindl wrote: Hi, sorry for the delay but I didn't time 'til now. No problem. Your snippet has been added to the collection and can be found here: http://codesnippets.services.openoffice.org/Office/Office.OpenNewView.snip Tom Ok, thanks. Vincenzo

[api-dev] Accede to Heading in Writer Document

2006-03-03 Thread Vincenzo Giuliano
Hi ALL, Does somebody know how to accede to headings in a Writer Document? I need to accede to this information in a document, please help me. Thanks. bye Vincenzo. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[api-dev] Re: Accede to Heading in Writer Document

2006-03-03 Thread Vincenzo Giuliano
Vincenzo Giuliano wrote: Hi ALL, Does somebody know how to accede to headings in a Writer Document? I need to accede to this information in a document, please help me. Thanks. I read the value of property ParaStyleName for each paragraph which is contained within the XEnumeration of XText

[api-dev] Table of contents index

2006-03-03 Thread Vincenzo Giuliano
Hi ALL, my name is Vincenzo. I have a question for you. I want to read a table of contents index within a Writer Document, how can I do this? I need to read all the name and the page number for each entry within the table. PS I work in JAVA. Thanks in advance. Vincenzo

[api-dev] Re: Re: Re: OpenNewView snippet code

2006-02-21 Thread Vincenzo Giuliano
Abstract Vincenzo Giuliano wrote: I could publish it as snippet code, what do you think of it? Mathias Bauer wrote: Yes, it can be useful until we get the bug fixed. Hi ALL, this is the snippet code. Sorry but I did not add links to IDL-Docs, imports,... Best Regards, Vincenzo

[api-dev] Re: Re: Re: Re: OpenNewView snippet code

2006-02-21 Thread Vincenzo Giuliano
e="Java" application="Office" keywords keywordOpenNewView/keyword keywordview/keyword keywordwindow/keyword keywordnew window/keyword /keywords authors author id="[EMAIL PROTECTED]" email="[EMAIL PROTECTED]"Vincenzo Giuliano/author /authors question headin

[api-dev] OpenNewView

2006-02-20 Thread Vincenzo Giuliano
Hi ALL, I have a serious problem. I try to open a Calc file in this way XComponent comp= xComponentLoader.loadComponentFromURL(path_file.ods,_default,FrameSearchFlag.AUTO,new PropertyValue[0]); I try to open a new view subsequently PropertyValue[] props = new PropertyValue[1]; props[0] = new

[api-dev] Re: Re:Re: Re: Load Excel file (.xls)

2006-02-20 Thread Vincenzo Giuliano
Andreas Schlüns wrote: Does this solve your problems realy ? If it's so - please make realy sure your file is a real xls - file. Your code isnt realy a fix ... it has some other disatvantages. Please use the normal API of OOo - not the command line. As Jürgen already mentione: please file

[api-dev] Re: Re: Re: Load Excel file (.xls)

2006-02-17 Thread Vincenzo Giuliano
Jürgen Schmidt wrote: it would helps if you can send the document (if it's not secret) as bug doc with an appropriate issue. Juergen I try again with another files .xls and the problem is dissolved. In the light of facts I agree with Andreas: the file is perhaps corrupted or the file is

[api-dev] Re: Column width

2006-02-17 Thread Vincenzo Giuliano
Eike Rathke wrote: CodeSnippets are your friends: http://codesnippets.services.openoffice.org/Calc/Calc.SetCellColumnAttributes.snip Eike Ok, thank you Eike. Bye - To unsubscribe, e-mail: [EMAIL PROTECTED] For

[api-dev] Re: Column width

2006-02-17 Thread Vincenzo Giuliano
Vincenzo Giuliano wrote: Hi ALL, Does somebody know how to set the width of column in CALC relatively to the text length? Is it possible to reproduce, via java code, the double click on column which set the column width relatively to the cell content? Thank you ALL. Whoever seeks will find

[api-dev] Column width

2006-02-17 Thread Vincenzo Giuliano
Hi ALL, Does somebody know how to set the width of column in CALC relatively to the text length? Is it possible to reproduce, via java code, the double click on column which set the column width relatively to the cell content? Thank you ALL.

[api-dev] Re: Service,interface and property descriptions for UnoObject on runtime

2006-02-16 Thread Vincenzo Giuliano
Tom Schindl wrote: of but can we move the discussion about this on the [EMAIL PROTECTED]. There are much more people reading and dicussing API-Topics than here ;-) Post your code to the [EMAIL PROTECTED] Tom Vincenzo Giuliano wrote: Hi Tom, I have a class java, named Descriptor

[api-dev] Load Excel file (.xls)

2006-02-16 Thread Vincenzo Giuliano
Hi ALL, my name is Vincenzo. I have a problem. I try to load excel file (.xls) via java code: PropertyValue[] props = new PropertyValue[2]; props[0] = new PropertyValue(); props[0].Name = "FilterName"; props[0].Value = "MS Excel 97"; props[1] = new PropertyValue(); props[1].Name =

[api-dev] Re: Load Excel file (.xls)

2006-02-16 Thread Vincenzo Giuliano
Vincenzo Giuliano wrote: Hi ALL, my name is Vincenzo. I have a problem. I try to load excel file (.xls) via java code: PropertyValue[] props = new PropertyValue[2]; props[0] = new PropertyValue(); props[0].Name = "FilterName"; props[0].Value = "MS Excel 97"

[api-dev] Re: Re:Re: Re: Load Excel file (.xls) (Errata Corrige)

2006-02-16 Thread Vincenzo Giuliano
Vincenzo Giuliano wrote: /**if urlExcelFile don't exists this method throws an Exception*/ public static XModel startExcelFile(String urlExcelFile)throws java.lang.Exception{ - To unsubscribe, e-mail: [EMAIL

[api-dev] Re: Re: Load Excel file (.xls)

2006-02-16 Thread Vincenzo Giuliano
Andreas Schlüns wrote: Vincenzo Giuliano wrote: Vincenzo Giuliano wrote: Hi ALL, my name is Vincenzo. I have a problem. I try to load excel file (.xls) via java code: PropertyValue[] props = new PropertyValue[2]; props[0] = new PropertyValue(); props[0].Name

[api-dev] Re:Re: Re: Load Excel file (.xls)

2006-02-16 Thread Vincenzo Giuliano
Hi ALL, I come to a conclusion. This code start a .xls file (if it exists). I accept any advice. public class LoadExcel { /[EMAIL PROTECTED] null if url don't exists*/ public static XModel startExcelFile(String urlExcelFile)throws java.lang.Exception{ /**Bootstrap*/

[api-dev] writer document properties (File-Properties-) Snippet

2006-02-15 Thread Vincenzo Giuliano
words keywordtitle/keyword keywordsubject/keyword keywordkeywords/keyword keywordcomments/keyword keywordproperties/keyword keywordwriter/keyword keyworddocument/keyword /keywords authors author id="[EMAIL PROTECTED]" email="[EMAIL PROTECTED]"Vincenzo