LibOpenOffice library

2013-09-27 Thread K.Misha
Good day! Our company has developed a library to automate Apache OpenOffice - http://4k.com.ua/products/others/libopenoffice I would like to know whether there is an opportunity to advertise this product at http://www.openoffice.org/ ? Or with whom I could discuss ways of cooperation?

test

2013-09-27 Thread K.Misha
test message 1неи - To unsubscribe, e-mail: api-unsubscr...@openoffice.apache.org For additional commands, e-mail: api-h...@openoffice.apache.org

RE: test

2013-09-27 Thread K.Misha
test message 2неинеи-Original Message-неиFrom: K.Misha [mailto:mi...@4k.com.ua] неиSent: Friday, September 27, 2013 7:11 PMнеиTo: api@openoffice.apache.orgнеиSubject: testнеинеиtest message 1неинеинеинеи--- --неиTo unsubscribe

RE: test

2013-09-27 Thread K.Misha
test message 3неинеи-Original Message-неиFrom: K.Misha [mailto:mi...@4k.com.ua] неиSent: Friday, September 27, 2013 7:12 PMнеиTo: api@openoffice.apache.orgнеиSubject: RE: testнеинеиtest message 2неинеи-Original Message-неиFrom: K.Mishaнеи[mailto:mi...@4k.com.ua] неиSent: Friday

*.docx

2013-09-26 Thread K.Misha
I distribute OpenOffice in Ukraine. A lot of people ask me if OpenOffice will be working with *.docx extension. Will be?

*.docx in OpenOffice 4.0

2013-09-26 Thread K.Misha
Hi, Andrew. OpenOffice4.0 opens *.docx format. And if we will watch MRI Uno object inspector tool we will see that Args is: Name stringFilterName Handlelong 0 Value any MS Word

Find\replace in writer

2013-09-25 Thread K.Misha
Hello! What interface i need to use to find\replace text in writer documet? Or i need to write it by hands like this: rtl::OUString uText = xText-getString(); rtl::OString str = rtl::OUStringToOString( uText, RTL_TEXTENCODING_MS_1251 ); string s = str.getStr();

inspector.oxt

2013-09-25 Thread K.Misha
When i'm installing Object inspector i have this error: Can you help me with this error? Maybe i have to install Java platform or something else? OS: Win 7 x64 Thanks!

convert rtl::OUString to char *

2013-09-24 Thread K.Misha
Hi! I habe this code: Reference XTextDocument xTextDocument (xWriterComponent,UNO_QUERY); Reference XText xText = xTextDocument-getText(); How can i convert xTextDocument-getText() to char * ? I used to convert it like this: int nLenOfAnsiChar =

convert OUString to char *

2013-09-24 Thread K.Misha
I have this code, made with your example: char * getWText( char * text ) { Reference XTextDocument xTextDocument (xWriterComponent,UNO_QUERY); Reference XText xText = xTextDocument-getText(); rtl::OUString uText = xText-getString(); rtl::OString str =

Change text in writer without changing style and formats

2013-09-24 Thread K.Misha
One more question... before changing text i have this: Reference XTextDocument xTextDocument (xWriterComponent,UNO_QUERY); Reference XText xText = xTextDocument-getText(); rtl::OUString uText = xText-getString(); rtl::OString str = rtl::OUStringToOString( uText,

RE: Change column property in XTextTable

2013-09-19 Thread K.Misha
Thanks!неинеи-Original Message-неиFrom: Peter Eberlein [mailto:pet@refofd.verwalt-berlin.de] неиSent: Thursday, September 19, 2013 5:24 PMнеиTo: api@openoffice.apache.orgнеиSubject: Re: Change column property in XTextTableнеинеиHi,неиAm 19.09.2013 13:36, schrieb K.Misha:неи

inserting images in writer

2013-09-19 Thread K.Misha
Hello! Can you send me some examples of using images in writer? p.s.: *.cxx if you can. Thanks!

Change column property in XTextTable

2013-09-19 Thread K.Misha
Code in attached file makes TextTable like this: But how i can make table like this: Thanks. image003.jpgimage004.jpg #include iostream #include cppuhelper/bootstrap.hxx #include rtl/ustring.hxx /** === begin UNO includes === **/ #include com/sun/star/beans/PropertyValue.hpp

RE: insert image into calc document

2013-08-08 Thread K.Misha
Thanks a lot!неинеи-Original Message-неиFrom: Ariel Constenla-Haile [mailto:arie...@apache.org] неиSent: Thursday, August 08, 2013 6:51 AMнеиTo: api@openoffice.apache.orgнеиSubject: Re: insert image into calc documentнеинеиHi,неинеиOn Mon, Aug 05, 2013 at 07:21:28PM +0300, K.Misha

RE: insert image into calc document

2013-08-06 Thread K.Misha
insert your image into the document, it then has an internal неиURL. The question is how to remove the image from the GUI and leave неиit in the file.неинеинеиOn 08/05/2013 12:21 PM, K.Misha wrote:неи неинеи From: K.Misha [mailto:mi...@4k.com.ua]неи Sent: Monday, August 05, 2013 7:21 PMнеи

insert image into calc document

2013-08-05 Thread K.Misha
From: K.Misha [mailto:mi...@4k.com.ua] Sent: Monday, August 05, 2013 7:21 PM To: 'oo...@openoffice.com' Subject: insert image into calc document Hello! I have a problem with inserting image into calc document! I'm doing it this way: void insertImage( imgPosition iPos, imgSize

insert image in calc document using VS C++

2013-05-10 Thread k.misha
Hi! Do you some examples in VS C++ how to insert image into calc document? Reference com::sun::star::drawing::XDrawPagesSupplier xDrawPagesSupplier(?); xDrawPagesSupplier-getDrawPages(); How I need to initialize xDrawPagesSupplier? Because I have an error when

insert image ino calc doc

2013-05-10 Thread k.misha
Hi! How I need to initialize XShapes and XShape interfaces? Reference XShapes xShapes(?); Reference XShape xShape(?); Thanks!

insert image into calc

2013-05-10 Thread k.misha
Hello! I have this code: Reference com::sun::star::drawing::XDrawPagesSupplier xDrawPagesSupplier(xCalcComponent, UNO_QUERY); Reference XDrawPages xDrawPages( xDrawPagesSupplier-getDrawPages(), UNO_QUERY ); Reference XDrawPage xDrawPage( xDrawPages-getByIndex(0), UNO_QUERY ); Reference

RE: insert image into calc

2013-05-10 Thread k.misha
неинеи-Original Message-неиFrom: Regina Henschel [mailto:rb.hensc...@t-online.de] неиSent: Friday, May 10, 2013 7:15 PMнеиTo: api@openoffice.apache.orgнеиSubject: Re: insert image into calcнеинеиHi,неинеиk.misha schrieb:неи Hello!неинеи I have this code:неинеи Reference

insert image into calc document

2013-05-10 Thread k.misha
Hi! Regina, I have understood how to do it. It's a sample of code: Reference com::sun::star::drawing::XDrawPagesSupplier xDrawPagesSupplier(xCalcComponent, UNO_QUERY); Reference XDrawPages xDrawPages( xDrawPagesSupplier-getDrawPages(), UNO_QUERY ); Reference XDrawPage

RE: OO SDK

2013-05-09 Thread k.misha
+0300, k.misha wrote:неи Hi!неи неи неи неи How I can insert Image to a calc document using oo sdk 3.4.1?неинеи(Side note: please use descriptive subjects in the mails, something like Inserting image in Calc)неинеиEach spreadsheet is described here:неиhttp://www.openoffice.org/api/docs/common/ref

OO SDK

2013-05-08 Thread k.misha
Hi! How I can insert Image to a calc document using oo sdk 3.4.1? Thanks.

RE: UNP API

2013-04-11 Thread k.misha
Very funny, Joe =)неинеинеи-Original Message-неиFrom: JOE CONNER [mailto:joeconner2...@gmail.com] неиSent: Wednesday, April 10, 2013 8:16 PMнеиTo: api@openoffice.apache.orgнеиSubject: Re: UNP APIнеинеиOn 04/10/2013 03:34 AM, k.misha wrote:неи Hi!неинеи How can I select a sheet in calc

RE: uno api problem

2013-04-07 Thread k.misha
I already fixed this problem this way:неинеиint nLenOfWideCharStr =неи MultiByteToWideChar(неиCP_ACP,неи MB_PRECOMPOSED,неиfontName,неи-1,неи NULL,неи0неи);неинеи wchar_t *cFontName =

RE: UNO API

2013-04-02 Thread k.misha
APIнеинеи-BEGIN PGP SIGNED MESSAGE-неиHash: SHA1неинеиAm 02.04.2013 11:45, k.misha wrote:неи Hi!неи неи неи неи Could someone give me some examples for working with UNO API inнеи Visual Studio C++!неи неи p.s.: And some documentation if you have.неи неи неи неи Thanks!неи неи неинеи http

RE: UNO API

2013-04-02 Thread k.misha
-BEGIN PGP SIGNED MESSAGE-неиHash: SHA1неинеиAm 02.04.2013 12:00, k.misha wrote:неи http://wiki.openoffice.org/wiki/Documentation/DevGuide/OpenOffice.org_Developers_GuideнеинеиThisнеи page is empty!неинеи-неинеиThis page is far from empty. It contains lots of text with an index

FW: help

2013-03-12 Thread k.misha
From: k.misha [mailto:mi...@4k.com.ua] Sent: Wednesday, March 13, 2013 2:02 AM To: 'api@openoffice.apache.org' Subject: help Hello! Can you help me to start with OpenOffice SDK? I installed OOO and OOO SDK. Do you have some examples for working with OOO SDK? I watch example in forum