Re: Help needed for building SDK samples in Visual Studio 2010

2012-12-13 Thread jg
source code to find why you need a waiting period here and there. The occasional waiting period is also required for console applications. I hope this helps a a bit. jg

Re: Help needed for building SDK samples in Visual Studio 2010

2012-12-14 Thread jg
http://wiki.openoffice.org/wiki/Documentation/DevGuide/OpenOffice.org_Developers_Guide jg

Re: Need help in getting the design right with Openoffice.org

2012-12-20 Thread jg
re expensive, because you potentially need to spend more time working out the details when you are on your own. I am sure that there are enough experts out there, who are able to offer professional help. jg

Re: OpenOffice plugin for NetBeans 7.2?

2013-01-13 Thread jg
It worked basically for me. I used NetBeans 7.2.1 together with the the 3.0.0.beta version of the NetBeans plugin to study the UNO API before continuing with C++. I did not encounter any problems while running any playing with the various Java examples. jg

Re: Regarding MSVCR80.dll

2013-01-25 Thread jg
erent versions of your module using VS2012 and VS2005 you need to have both associated runtime libraries installed. -- jg

Re: Regarding MSVCR80.dll

2013-01-25 Thread jg
might need other tools as well (like the manifest tool to bind the executable code to the proper runtime libs) and you probably end up doing a lot of OS dependent dispatching inside the makefile. Consider generating your build environment with cmake (www.cmake.org). jg

Re: UNO API

2013-04-02 Thread jg
ve to). The old message http://markmail.org/message/gzzv3we42b36aavn?q=list:org%2Eapache%2Eincubator%2Eooo-api+from:%22jg%22&page=1 has some more details on what to look for. jg - To unsubscribe, e-mail: api

Re: uno api problem

2013-04-06 Thread jg
Value(L"CharFontName", Any(value)); jg - To unsubscribe, e-mail: api-unsubscr...@openoffice.apache.org For additional commands, e-mail: api-h...@openoffice.apache.org

Re: UNO API

2013-04-18 Thread jg
a table inside a writer document, but the spreadsheet shouldn't differ a lot. Yes, I do know that this may not be portable, but the rest of the MFC sources isn't either :) jg - To unsubscribe, e-mail: api-unsubscr.

Re: EXTERNAL: Re: soffice process still running

2013-05-07 Thread jg
You can dispose the component in question (http://www.openoffice.org/api/docs/common/ref/com/sun/star/lang/XComponent.html). jg - To unsubscribe, e-mail: api-unsubscr...@openoffice.apache.org For additional commands, e-mail

Re: convert rtl::OUString to char *

2013-09-24 Thread jg
WideCharToMultiByte() indicates that you are working on Windows. At first you need to convert to UTF16 (from UTF8), and then from UTF16 to the desired code page. Have a look at http://code.msdn.microsoft.com/C-UTF-8-Conversion-Helpers-22c0a664 . jg

Re: convert rtl::OUString to char *

2013-09-24 Thread jg
WideCharToMultiByte() indicates that you are working on Windows. At first you need to convert to UTF16 (from UTF8), and then from UTF16 to the desired code page. Have a look at http://code.msdn.microsoft.com/C-UTF-8-Conversion-Helpers-22c0a664 . jg