Re: Query on Open Office building guide on kali Linux VM

2024-07-24 Thread Keith McKenna

Dave Fisher wrote:

Hi Harsh,

Welcome to Apache OpenOffice.


On Jul 23, 2024, at 5:10 AM, Harsh Giri <2006.harshg...@gmail.com> wrote:

Greetings Dev Team,
I'm looking to install OpenOffice and wanted to check if there are any specific 
recommendations:

  1.  Should I install it on my Kali Linux virtual machine?
  2.  Or is it better to install directly on my Windows 11 laptop?

Are there any advantages or considerations for either option that I should be 
aware of?


If you plan to build OpenOffice to learn the skills needed for development then 
you should proceed on the platform you are most comfortable developing code.

I hope others will point you to the building guides.

Best,
Dave


Thank you for your guidance.
Harsh Giri


Harish,Welcome to Apache OpenOffice, the step by step building guide can 
be found at the following: 
https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO.


Regards
Keith N. McKenna


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Query regarding setting up Open Office environment

2024-07-24 Thread Harsh Giri
Greetings,
I have successfully followed and installed additional services i.e.

  1.
Open jdk
  2.
Apache Ant 1.19.16-bin.zip
  3.
Microsoft Windows SDK for Windows 7 and .NET Framework 4 SP1
  4.
MS Visual C++ 2008 SP1 Redistributable Package (x86)


I have not downloaded the optional services and will do if required.



However, I do need help with understanding this part of the tutorial. I would 
be extremely grateful if you could help me with this bit.
[cid:72ed3e32-87f9-4b30-a50a-36260c7f6c04]

  1.



Re: Query on Open Office building guide on kali Linux VM

2024-07-23 Thread D W
Dear Harsh Giri,

If you are specifically building on Kali, then you can disregard this
message. I have provided installation instructions if you are looking to
install OpenOffice.

For installation, check out this guide,
https://geekrewind.com/lesson-17-replacing-libreoffice-openoffice-ubuntu/

Or Basically,
Download the latest .deb from https://www.openoffice.org/download/index.html
for your linux system in your desired language.
If you have previously installed libreoffice, in terminal to remove
libreoffice run, "sudo apt-get update" and "sudo apt-get -y remove --purge
libreoffice* libexttextcat-data* && sudo apt-get -y autoremove".
Extract the contents of the
"Apache_OpenOffice_4.1.15_Linux_SYSTEM_install-deb_LANGUAGE.tar.gz".
Navigate to the DEBS folder and open terminal at that location.
To install OpenOffice, in your terminal run, "sudo dpkg -i *.deb".
To integrate OpenOffice into your system, in the same terminal run, "sudo
dpkg -i desktop-integration/*.deb".
Enjoy using OpenOffice.

All the best.

On Tue, 23 Jul 2024 at 22:11, Harsh Giri <2006.harshg...@gmail.com> wrote:

> Greetings Dev Team,
> I'm looking to install OpenOffice and wanted to check if there are any
> specific recommendations:
>
>   1.  Should I install it on my Kali Linux virtual machine?
>   2.  Or is it better to install directly on my Windows 11 laptop?
>
> Are there any advantages or considerations for either option that I should
> be aware of?
> Thank you for your guidance.
> Harsh Giri
>


Re: Query on Open Office building guide on kali Linux VM

2024-07-23 Thread Dave Fisher
Hi Harsh,

Welcome to Apache OpenOffice.

> On Jul 23, 2024, at 5:10 AM, Harsh Giri <2006.harshg...@gmail.com> wrote:
> 
> Greetings Dev Team,
> I'm looking to install OpenOffice and wanted to check if there are any 
> specific recommendations:
> 
>  1.  Should I install it on my Kali Linux virtual machine?
>  2.  Or is it better to install directly on my Windows 11 laptop?
> 
> Are there any advantages or considerations for either option that I should be 
> aware of?

If you plan to build OpenOffice to learn the skills needed for development then 
you should proceed on the platform you are most comfortable developing code.

I hope others will point you to the building guides.

Best,
Dave

> Thank you for your guidance.
> Harsh Giri


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Query on Open Office building guide on kali Linux VM

2024-07-23 Thread Harsh Giri
Greetings Dev Team,
I'm looking to install OpenOffice and wanted to check if there are any specific 
recommendations:

  1.  Should I install it on my Kali Linux virtual machine?
  2.  Or is it better to install directly on my Windows 11 laptop?

Are there any advantages or considerations for either option that I should be 
aware of?
Thank you for your guidance.
Harsh Giri


Re: Query

2020-03-18 Thread Peter Kovacs

On Github you can see the following Distribution:

1. C++ 79.3% 
2. Java 9.8% 
3. Makefile 2.3% 
4. XSLT 2.2% 
5. PostScript 2.1%
   
6. C 1.4% 
7. Other 2.9%

So the Core is written in C/C++. But it is still in an old style. So we 
use gnu98 standard. Mainly because we support old Distributions.
So we still support Centos 7. On Windows we need to move to newer SDKs, 
currently we use an outdated one, which makes trouble.
Some volunteers have tried to update it but it never went into our 
sourcetree.
For MacOSX we moved up in the SDK versions, and got rid of the most 
legacy stuff.


About the Java Code: Java has been introduced by sun at some point in 
history. A lot of Wizards are made in Java.
I am not sure if Java is completly optional, since ant the Java build 
tool we use is not optional. But most of the code is optional for sure.


Other Code:
We have some Perl and bash scripts that help us to build openoffice. 
They are currently added in the source repository.

We have integrated some Scripts in python too. I.E. Mailmerge.
Also there is some Assambler script which is very interesting concept. 
The assambler application creates a sort of compability layer between 
languages.
We can directly use a Java class in C++, when it is announced by special 
idl files or vice versa. Pretty neat but breaks any chance currently to 
use an IDE.


Also the codes is divided in Modules. You can check the Architecture at 
[1] where it gives some abstract overview. However at [2] I created a 
dependency sheet, showing how the build environment thinks the modules 
depends on each other. [3] tries to explain what each modules does, but 
it is incomplete and I invite everyone to help to complete it. I try to 
collect text from other parts of the wiki and from the code.


HTH
Peter

[1] https://wiki.openoffice.org/wiki/Architecture
[2] https://wiki.openoffice.org/wiki/File:Dependency_graph_trunc.odg
[3] https://wiki.openoffice.org/wiki/Main


Am 16.03.20 um 22:31 schrieb James Taylor:

Hello,

I am James and I am currently studying a BTEC Level 3 extended Diploma in IT 
and Computing at Henley College.

As part of my course, we have different units and one of them we are currently 
covering is Programming.

I was wondering what OpenOffice is programmed in, and how it works in a code 
way.

I am sorry if this isn’t very clear.

Kind Regards,
James Taylor

Sent from Mail for Windows 10




Re: Query

2020-03-17 Thread Dirk-Willem van Gulik



> On 17 Mar 2020, at 09:07, Bidouille  wrote:
> 
>> I was wondering what OpenOffice is programmed in, and how it works in
>> a code way.

> OpenOffice use C++ language
> You can contribute via the Github repo:
> https://github.com/apache/openoffice

And if you are unsure where to start - then work your way through:

https://wiki.openoffice.org/wiki/Development
https://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO

with a nice talk and general info on

https://fosdem.org/2020/schedule/event/openoffice_build_system/
https://openoffice.apache.org/orientation/index.html

and once you are going - look at

https://cwiki.apache.org/confluence/display/OOOUSERS/Help+Wanted

Dw.



-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Query

2020-03-17 Thread Bidouille
> I was wondering what OpenOffice is programmed in, and how it works in
> a code way.
OpenOffice use C++ language
You can contribute via the Github repo:
https://github.com/apache/openoffice

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Query

2020-03-17 Thread James Taylor
Hello,

I am James and I am currently studying a BTEC Level 3 extended Diploma in IT 
and Computing at Henley College.

As part of my course, we have different units and one of them we are currently 
covering is Programming.

I was wondering what OpenOffice is programmed in, and how it works in a code 
way.

I am sorry if this isn’t very clear.

Kind Regards,
James Taylor

Sent from Mail for Windows 10



Query for progress for Issue [Issue 47111] Auto-inserted empty page should honour page layout

2019-02-02 Thread Peter Kovacs
Hello,

 Better ask for progress on Developer Mailing list then in the bug
itself. There you can get a better discussion. The Issue should focus on
the solution of the issue.

Our main development focus is currently the following (Roughly):

# Updating SDKs

# Improving build environment

# Windows 64 builds

# improving the Language translation process

# prepare our next release 4.2.0, which will come as beta.


Currently all Volunteers are busy. If 47111 is to be done, it needs a
new volunteer or it has to wait longer.


Thanks for your Interest.

All the Best

Peter





-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Navigator query

2019-01-21 Thread Rory O'Farrell
On Mon, 21 Jan 2019 19:40:24 +0200
Damjan Jovanovic  wrote:

> Hi
> 
> Here's how I found it:
> 
> View -> Navigator to open the window.
> 
> Look for the most complex unique text there, eg. "Heading Levels Shown" in
> a tooltip.
> 
> Go to https://opengrok.libreoffice.org and search for "Heading Levels
> Shown" under full-text search.
> 
> It finds 2 matches:
> core/sw/uiconfig/swriter/ui/navigatorpanel.ui
> core/officecfg/registry/schema/org/openoffice/Office/Writer.xcs
> 
> It's almost certainly the former.
> 
> Do we have that file in our tree? No. But let's search for that text in our
> code in the same module (sw):
> main/sw]$ grep 'Heading Levels Shown' * -R
> source/ui/utlui/navipi.src:Text [ en-US ] = "Heading Levels
> Shown" ;
> 
> So it's in main/sw/source/ui/utlui/navipi.src
> Sadly main/sw is one of our biggest modules :-/.


Thank you - I now know where to look when I get to this.

Rory

> 
> Where is the code using it? Well reading that file gives us:
> 
> ToolBoxItem
> {
> Identifier = FN_OUTLINE_LEVEL ;
> HelpID = HID_NAVI_TBX13 ;
> /* ### ACHTUNG: Neuer Text in Resource?
> Angezeigte berschriftenebenen : Angezeigte <9A>berschriftenebenen */
> Text [ en-US ] = "Heading Levels Shown" ;
> DropDown = TRUE ;
> };
> 
> So who is using FN_OUTLINE_LEVEL?
> 
> main/sw]$ grep FN_OUTLINE_LEVEL * -R
> inc/cmdid.h:#define FN_OUTLINE_LEVEL(FN_VIEW + 36)/**/
> source/ui/utlui/navipi.cxx:case FN_OUTLINE_LEVEL:
> source/ui/utlui/navipi.cxx:
>  pBox->GetItemRect(FN_OUTLINE_LEVEL),
> source/ui/utlui/navipi.cxx:aContentToolBox.SetItemBits(
> FN_OUTLINE_LEVEL, aContentToolBox.GetItemBits( FN_OUTLINE_LEVEL ) |
> TIB_DROPDOWNONLY );
> source/ui/utlui/navipi.src:FN_OUTLINE_LEVEL ;\
> source/ui/utlui/navipi.src:Identifier = FN_OUTLINE_LEVEL ;
> 
> Happy coding
> Damjan
> 
> On Mon, Jan 21, 2019 at 6:58 PM Rory O'Farrell  wrote:
> 
> > Can anyone tell me if, in the AOO code, there is a module for Navigator?
> > If so, which module is it?
> >
> > My thinking is that Navigator could do with some additions, such as
> > ability to display the word count for Chapters (helpful for an author to
> > tweak his chapter lengths to be roughly the same), and the ability to
> > display only comments from one author - so that, for example, a student
> > might see only his tutor's comments as he incorporated their advice into
> > his text.
> >
> > If there is a Navigator module, I would look at the source code to try to
> > implement the above, otherwise I'm thinking of an extension to show this
> > information, whether integrated into Navigator or in a stand-alone panel.
> >
> >
> > --
> > Rory O'Farrell 
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> > For additional commands, e-mail: dev-h...@openoffice.apache.org
> >
> >


-- 
Rory O'Farrell 

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Navigator query

2019-01-21 Thread Damjan Jovanovic
Hi

Here's how I found it:

View -> Navigator to open the window.

Look for the most complex unique text there, eg. "Heading Levels Shown" in
a tooltip.

Go to https://opengrok.libreoffice.org and search for "Heading Levels
Shown" under full-text search.

It finds 2 matches:
core/sw/uiconfig/swriter/ui/navigatorpanel.ui
core/officecfg/registry/schema/org/openoffice/Office/Writer.xcs

It's almost certainly the former.

Do we have that file in our tree? No. But let's search for that text in our
code in the same module (sw):
main/sw]$ grep 'Heading Levels Shown' * -R
source/ui/utlui/navipi.src:Text [ en-US ] = "Heading Levels
Shown" ;

So it's in main/sw/source/ui/utlui/navipi.src
Sadly main/sw is one of our biggest modules :-/.

Where is the code using it? Well reading that file gives us:

ToolBoxItem
{
Identifier = FN_OUTLINE_LEVEL ;
HelpID = HID_NAVI_TBX13 ;
/* ### ACHTUNG: Neuer Text in Resource?
Angezeigte berschriftenebenen : Angezeigte <9A>berschriftenebenen */
Text [ en-US ] = "Heading Levels Shown" ;
DropDown = TRUE ;
};

So who is using FN_OUTLINE_LEVEL?

main/sw]$ grep FN_OUTLINE_LEVEL * -R
inc/cmdid.h:#define FN_OUTLINE_LEVEL(FN_VIEW + 36)/**/
source/ui/utlui/navipi.cxx:case FN_OUTLINE_LEVEL:
source/ui/utlui/navipi.cxx:
 pBox->GetItemRect(FN_OUTLINE_LEVEL),
source/ui/utlui/navipi.cxx:aContentToolBox.SetItemBits(
FN_OUTLINE_LEVEL, aContentToolBox.GetItemBits( FN_OUTLINE_LEVEL ) |
TIB_DROPDOWNONLY );
source/ui/utlui/navipi.src:FN_OUTLINE_LEVEL ;\
source/ui/utlui/navipi.src:Identifier = FN_OUTLINE_LEVEL ;

Happy coding
Damjan

On Mon, Jan 21, 2019 at 6:58 PM Rory O'Farrell  wrote:

> Can anyone tell me if, in the AOO code, there is a module for Navigator?
> If so, which module is it?
>
> My thinking is that Navigator could do with some additions, such as
> ability to display the word count for Chapters (helpful for an author to
> tweak his chapter lengths to be roughly the same), and the ability to
> display only comments from one author - so that, for example, a student
> might see only his tutor's comments as he incorporated their advice into
> his text.
>
> If there is a Navigator module, I would look at the source code to try to
> implement the above, otherwise I'm thinking of an extension to show this
> information, whether integrated into Navigator or in a stand-alone panel.
>
>
> --
> Rory O'Farrell 
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>
>


Navigator query

2019-01-21 Thread Rory O'Farrell
Can anyone tell me if, in the AOO code, there is a module for Navigator?  If 
so, which module is it?

My thinking is that Navigator could do with some additions, such as ability to 
display the word count for Chapters (helpful for an author to tweak his chapter 
lengths to be roughly the same), and the ability to display only comments from 
one author - so that, for example, a student might see only his tutor's 
comments as he incorporated their advice into his text.

If there is a Navigator module, I would look at the source code to try to 
implement the above, otherwise I'm thinking of an extension to show this 
information, whether integrated into Navigator or in a stand-alone panel.


-- 
Rory O'Farrell 

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



OpenOffice Query

2017-12-14 Thread Rushna Jabi
Hi All,
I have created on OpenOffice AddOn using Netbeans 8.0.2 IDE and Now I have
to get the value from "Software\\Wow6432Node\\... " Registry.
Please tell how to do it.


I have sent my query to OpenOffice forum but they have no idea about it.
Mr. Hagar Delest suggest me to dev mailing list.




Rushna
Software Engineer


Re: OpenOffice Query

2017-07-18 Thread Rushna Jabi
ddDocumentEventListener().
>>>>>>>
>>>>>>> please tell me from where I have to get "OnSave" or "OnSaveAs"
>>>>>>> events.I am not getting.
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> Regards,
>>>>>>> Rushna Jabi
>>>>>>> Software Programmer
>>>>>>> 8447294601
>>>>>>>
>>>>>>> On Thu, Jul 6, 2017 at 12:48 PM, Rushna Jabi <
>>>>>>> rushnajabi...@gmail.com> wrote:
>>>>>>>
>>>>>>>> OK,I am working on this.
>>>>>>>>
>>>>>>>> Thanks.
>>>>>>>>
>>>>>>>>
>>>>>>>> On Thu, Jul 6, 2017 at 12:25 PM, Damjan Jovanovic <
>>>>>>>> dam...@apache.org> wrote:
>>>>>>>>
>>>>>>>>> You're looking for this then:
>>>>>>>>> https://wiki.openoffice.org/wiki/Documentation/DevGuide/Offi
>>>>>>>>> ceDev/Document_Events
>>>>>>>>>
>>>>>>>>> I'll only be able to test this later, but once you have an UNO
>>>>>>>>> component context or service manager, use it to create a
>>>>>>>>> "com.sun.star.frame.GlobalEventBroadcaster", use
>>>>>>>>> UnoRuntime.queryInface() to get its XEventBroadcaster interface, call
>>>>>>>>> addEventListener() to add your listener, and in that listener make 
>>>>>>>>> sure the
>>>>>>>>> even name is "OnSave" or "OnSaveDone".
>>>>>>>>>
>>>>>>>>> Good luck
>>>>>>>>> Damjan
>>>>>>>>>
>>>>>>>>> On Thu, Jul 6, 2017 at 8:43 AM, Rushna Jabi <
>>>>>>>>> rushnajabi...@gmail.com> wrote:
>>>>>>>>>
>>>>>>>>>> Hello Sir,
>>>>>>>>>> I know this one,but i don't want to use macro.
>>>>>>>>>> I have to do it using code. If I use "ag.ion.noa_2.2.3"  Nice
>>>>>>>>>> OpenOffice Access Library , in this library some methods
>>>>>>>>>> OnSave(),OnSaveDone() in AbstractDocument class but I am unable
>>>>>>>>>> to get How to use it.
>>>>>>>>>>
>>>>>>>>>> Please help me out.
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> Thanks & Regards,
>>>>>>>>>> Rushna Jabi
>>>>>>>>>> Software Engineer
>>>>>>>>>> 8447294601
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> On Thu, Jul 6, 2017 at 11:49 AM, Damjan Jovanovic <
>>>>>>>>>> dam...@apache.org> wrote:
>>>>>>>>>>
>>>>>>>>>>> Hi Rushna
>>>>>>>>>>>
>>>>>>>>>>> Apparently, to do this manually:
>>>>>>>>>>>
>>>>>>>>>>> Click on "Tools" -> "Customize".
>>>>>>>>>>> Go to the "Events" tab.
>>>>>>>>>>> Select "Save document", and click on the "Macro" button, then
>>>>>>>>>>> assign your plugin.
>>>>>>>>>>>
>>>>>>>>>>> See this for screenshots:
>>>>>>>>>>> https://wiki.openoffice.org/wiki/Documentation/OOoAuthors_Us
>>>>>>>>>>> er_Manual/Getting_Started/How_to_run_a_macro
>>>>>>>>>>>
>>>>>>>>>>> Or, are you trying to get your plugin to automatically assign
>>>>>>>>>>> itself to be called on save, so that the above isn't required?
>>>>>>>>>>>
>>>>>>>>>>> Regards
>>>>>>>>>>> Damjan
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> On Thu, Jul 6, 2017 at 6:52 AM, Rushna Jabi <
>>>>>>>>>>> rushnajabi...@gmail.com> wrote:
>>>>>>>>>>>
>>>>>>>>>>>> Thanks for your response.but I am already a member of
>>>>>>>>>>>> OpenOffice forum,
>>>>>>>>>>>> I have sent my issues there but "Villeroy" replied that "This
>>>>>>>>>>>> is too
>>>>>>>>>>>> sophisticated to be discussed on this forum, I think. You
>>>>>>>>>>>> should write to
>>>>>>>>>>>> developers mailing list for LibreOffice or OpenOffice."
>>>>>>>>>>>>
>>>>>>>>>>>> Please help..
>>>>>>>>>>>>
>>>>>>>>>>>> Thanks & Regards,
>>>>>>>>>>>>
>>>>>>>>>>>> Rushna Jabi
>>>>>>>>>>>> Software Engineer
>>>>>>>>>>>> 8447294601
>>>>>>>>>>>>
>>>>>>>>>>>> On Wed, Jul 5, 2017 at 5:51 PM, FR web forum <ooofo...@free.fr>
>>>>>>>>>>>> wrote:
>>>>>>>>>>>>
>>>>>>>>>>>> > The better place to help end-users is:
>>>>>>>>>>>> > http://forum.openoffice.org
>>>>>>>>>>>> >
>>>>>>>>>>>> > - Mail original -
>>>>>>>>>>>> > De: "Rushna Jabi" <rushnajabi...@gmail.com>
>>>>>>>>>>>> > À: dev@openoffice.apache.org
>>>>>>>>>>>> > Envoyé: Mercredi 5 Juillet 2017 12:04:52
>>>>>>>>>>>> > Objet: OpenOffice Query
>>>>>>>>>>>> >
>>>>>>>>>>>> > Hello Sir,
>>>>>>>>>>>> >
>>>>>>>>>>>> > I am working on Java Plugin for OpenOffice.I created a plugin
>>>>>>>>>>>> but i want to
>>>>>>>>>>>> > call
>>>>>>>>>>>> > this plugin before save event.
>>>>>>>>>>>> >
>>>>>>>>>>>> > please help me out.
>>>>>>>>>>>> >
>>>>>>>>>>>> >
>>>>>>>>>>>> >
>>>>>>>>>>>> >
>>>>>>>>>>>> > Thanks & Regards,
>>>>>>>>>>>> > Rushna Jabi
>>>>>>>>>>>> > ACPL Systems Pvt. Ltd.
>>>>>>>>>>>> >
>>>>>>>>>>>> > 
>>>>>>>>>>>> -
>>>>>>>>>>>> > To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
>>>>>>>>>>>> > For additional commands, e-mail:
>>>>>>>>>>>> dev-h...@openoffice.apache.org
>>>>>>>>>>>> >
>>>>>>>>>>>> >
>>>>>>>>>>>> >
>>>>>>>>>>>> >
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>
>>>>>
>>>>
>>


Re: OpenOffice Query

2017-07-18 Thread Rushna Jabi
gt;>> addEventListener() to add your listener, and in that listener make 
>>>>>>>> sure the
>>>>>>>> even name is "OnSave" or "OnSaveDone".
>>>>>>>>
>>>>>>>> Good luck
>>>>>>>> Damjan
>>>>>>>>
>>>>>>>> On Thu, Jul 6, 2017 at 8:43 AM, Rushna Jabi <
>>>>>>>> rushnajabi...@gmail.com> wrote:
>>>>>>>>
>>>>>>>>> Hello Sir,
>>>>>>>>> I know this one,but i don't want to use macro.
>>>>>>>>> I have to do it using code. If I use "ag.ion.noa_2.2.3"  Nice
>>>>>>>>> OpenOffice Access Library , in this library some methods
>>>>>>>>> OnSave(),OnSaveDone() in AbstractDocument class but I am unable to
>>>>>>>>> get How to use it.
>>>>>>>>>
>>>>>>>>> Please help me out.
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> Thanks & Regards,
>>>>>>>>> Rushna Jabi
>>>>>>>>> Software Engineer
>>>>>>>>> 8447294601
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> On Thu, Jul 6, 2017 at 11:49 AM, Damjan Jovanovic <
>>>>>>>>> dam...@apache.org> wrote:
>>>>>>>>>
>>>>>>>>>> Hi Rushna
>>>>>>>>>>
>>>>>>>>>> Apparently, to do this manually:
>>>>>>>>>>
>>>>>>>>>> Click on "Tools" -> "Customize".
>>>>>>>>>> Go to the "Events" tab.
>>>>>>>>>> Select "Save document", and click on the "Macro" button, then
>>>>>>>>>> assign your plugin.
>>>>>>>>>>
>>>>>>>>>> See this for screenshots:
>>>>>>>>>> https://wiki.openoffice.org/wiki/Documentation/OOoAuthors_Us
>>>>>>>>>> er_Manual/Getting_Started/How_to_run_a_macro
>>>>>>>>>>
>>>>>>>>>> Or, are you trying to get your plugin to automatically assign
>>>>>>>>>> itself to be called on save, so that the above isn't required?
>>>>>>>>>>
>>>>>>>>>> Regards
>>>>>>>>>> Damjan
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> On Thu, Jul 6, 2017 at 6:52 AM, Rushna Jabi <
>>>>>>>>>> rushnajabi...@gmail.com> wrote:
>>>>>>>>>>
>>>>>>>>>>> Thanks for your response.but I am already a member of OpenOffice
>>>>>>>>>>> forum,
>>>>>>>>>>> I have sent my issues there but "Villeroy" replied that "This is
>>>>>>>>>>> too
>>>>>>>>>>> sophisticated to be discussed on this forum, I think. You should
>>>>>>>>>>> write to
>>>>>>>>>>> developers mailing list for LibreOffice or OpenOffice."
>>>>>>>>>>>
>>>>>>>>>>> Please help..
>>>>>>>>>>>
>>>>>>>>>>> Thanks & Regards,
>>>>>>>>>>>
>>>>>>>>>>> Rushna Jabi
>>>>>>>>>>> Software Engineer
>>>>>>>>>>> 8447294601
>>>>>>>>>>>
>>>>>>>>>>> On Wed, Jul 5, 2017 at 5:51 PM, FR web forum <ooofo...@free.fr>
>>>>>>>>>>> wrote:
>>>>>>>>>>>
>>>>>>>>>>> > The better place to help end-users is:
>>>>>>>>>>> > http://forum.openoffice.org
>>>>>>>>>>> >
>>>>>>>>>>> > - Mail original -
>>>>>>>>>>> > De: "Rushna Jabi" <rushnajabi...@gmail.com>
>>>>>>>>>>> > À: dev@openoffice.apache.org
>>>>>>>>>>> > Envoyé: Mercredi 5 Juillet 2017 12:04:52
>>>>>>>>>>> > Objet: OpenOffice Query
>>>>>>>>>>> >
>>>>>>>>>>> > Hello Sir,
>>>>>>>>>>> >
>>>>>>>>>>> > I am working on Java Plugin for OpenOffice.I created a plugin
>>>>>>>>>>> but i want to
>>>>>>>>>>> > call
>>>>>>>>>>> > this plugin before save event.
>>>>>>>>>>> >
>>>>>>>>>>> > please help me out.
>>>>>>>>>>> >
>>>>>>>>>>> >
>>>>>>>>>>> >
>>>>>>>>>>> >
>>>>>>>>>>> > Thanks & Regards,
>>>>>>>>>>> > Rushna Jabi
>>>>>>>>>>> > ACPL Systems Pvt. Ltd.
>>>>>>>>>>> >
>>>>>>>>>>> > 
>>>>>>>>>>> -
>>>>>>>>>>> > To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
>>>>>>>>>>> > For additional commands, e-mail:
>>>>>>>>>>> dev-h...@openoffice.apache.org
>>>>>>>>>>> >
>>>>>>>>>>> >
>>>>>>>>>>> >
>>>>>>>>>>> >
>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>
>>>>>
>>>>
>>>
>


Re: OpenOffice Query

2017-07-18 Thread Rushna Jabi
Hi Danjan,
I am getting popup on save, on saveAs event after the saving doc.
But I want my popup before save event window..
How is it possible?





Regards,
Rushna jabi
Software Engineer
8447294604

On 13-Jul-2017 15:03, "Damjan Jovanovic" <dam...@apache.org> wrote:

> That's great. I am glad.
>
> And you don't have to call me "sir" :-).
>
> On Thu, Jul 13, 2017 at 11:18 AM, Rushna Jabi <rushnajabi...@gmail.com>
> wrote:
>
>> I am working on AOO. I made an OpenOffice plugin on NetBeans environment.
>> "OnSave" event is working properly.
>>
>> Thanks a lot Sir for your guidance...
>>
>>
>>
>>
>>
>> Thanks & Regards,
>> Rushna Jabi
>> Software Programmer
>> 8447294601
>>
>>
>> On Wed, Jul 12, 2017 at 1:52 PM, Damjan Jovanovic <dam...@apache.org>
>> wrote:
>>
>>> Please see my attached example. I tested it and it does work.
>>>
>>> Make sure you are running AOO with the right options:
>>> ./soffice "-accept=socket,host=localhost,port=8100;urp"
>>> or match the port to the initialObject string.
>>>
>>> For a real-world implementation, you should probably extend WeakBase
>>> too, in the class implementing the listener.
>>>
>>> Regards
>>> Damjan
>>>
>>> On Wed, Jul 12, 2017 at 10:04 AM, Rushna Jabi <rushnajabi...@gmail.com>
>>> wrote:
>>>
>>>> Hello Sir,
>>>> I have an UNO component and I implemented interface
>>>> "com.sun.star.document.XDocumentEventBroadCaster", use
>>>> UnoRuntime.queryInface() to get its XEventBroadcaster interface, calling
>>>> addDocumentEventListener().
>>>>
>>>> please tell me from where I have to get "OnSave" or "OnSaveAs" events.I
>>>> am not getting.
>>>>
>>>>
>>>>
>>>> Regards,
>>>> Rushna Jabi
>>>> Software Programmer
>>>> 8447294601
>>>>
>>>> On Thu, Jul 6, 2017 at 12:48 PM, Rushna Jabi <rushnajabi...@gmail.com>
>>>> wrote:
>>>>
>>>>> OK,I am working on this.
>>>>>
>>>>> Thanks.
>>>>>
>>>>>
>>>>> On Thu, Jul 6, 2017 at 12:25 PM, Damjan Jovanovic <dam...@apache.org>
>>>>> wrote:
>>>>>
>>>>>> You're looking for this then:
>>>>>> https://wiki.openoffice.org/wiki/Documentation/DevGuide/Offi
>>>>>> ceDev/Document_Events
>>>>>>
>>>>>> I'll only be able to test this later, but once you have an UNO
>>>>>> component context or service manager, use it to create a
>>>>>> "com.sun.star.frame.GlobalEventBroadcaster", use
>>>>>> UnoRuntime.queryInface() to get its XEventBroadcaster interface, call
>>>>>> addEventListener() to add your listener, and in that listener make sure 
>>>>>> the
>>>>>> even name is "OnSave" or "OnSaveDone".
>>>>>>
>>>>>> Good luck
>>>>>> Damjan
>>>>>>
>>>>>> On Thu, Jul 6, 2017 at 8:43 AM, Rushna Jabi <rushnajabi...@gmail.com>
>>>>>> wrote:
>>>>>>
>>>>>>> Hello Sir,
>>>>>>> I know this one,but i don't want to use macro.
>>>>>>> I have to do it using code. If I use "ag.ion.noa_2.2.3"  Nice
>>>>>>> OpenOffice Access Library , in this library some methods
>>>>>>> OnSave(),OnSaveDone() in AbstractDocument class but I am unable to
>>>>>>> get How to use it.
>>>>>>>
>>>>>>> Please help me out.
>>>>>>>
>>>>>>>
>>>>>>> Thanks & Regards,
>>>>>>> Rushna Jabi
>>>>>>> Software Engineer
>>>>>>> 8447294601
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> On Thu, Jul 6, 2017 at 11:49 AM, Damjan Jovanovic <dam...@apache.org
>>>>>>> > wrote:
>>>>>>>
>>>>>>>> Hi Rushna
>>>>>>>>
>>>>>>>> Apparently, to do this manually:
>>>>>>>>
>>>>>>>> Click on "

Re: OpenOffice Query

2017-07-18 Thread Damjan Jovanovic
e Access Library , in this library some methods
>>>>>>>> OnSave(),OnSaveDone() in AbstractDocument class but I am unable to
>>>>>>>> get How to use it.
>>>>>>>>
>>>>>>>> Please help me out.
>>>>>>>>
>>>>>>>>
>>>>>>>> Thanks & Regards,
>>>>>>>> Rushna Jabi
>>>>>>>> Software Engineer
>>>>>>>> 8447294601
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> On Thu, Jul 6, 2017 at 11:49 AM, Damjan Jovanovic <
>>>>>>>> dam...@apache.org> wrote:
>>>>>>>>
>>>>>>>>> Hi Rushna
>>>>>>>>>
>>>>>>>>> Apparently, to do this manually:
>>>>>>>>>
>>>>>>>>> Click on "Tools" -> "Customize".
>>>>>>>>> Go to the "Events" tab.
>>>>>>>>> Select "Save document", and click on the "Macro" button, then
>>>>>>>>> assign your plugin.
>>>>>>>>>
>>>>>>>>> See this for screenshots:
>>>>>>>>> https://wiki.openoffice.org/wiki/Documentation/OOoAuthors_Us
>>>>>>>>> er_Manual/Getting_Started/How_to_run_a_macro
>>>>>>>>>
>>>>>>>>> Or, are you trying to get your plugin to automatically assign
>>>>>>>>> itself to be called on save, so that the above isn't required?
>>>>>>>>>
>>>>>>>>> Regards
>>>>>>>>> Damjan
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> On Thu, Jul 6, 2017 at 6:52 AM, Rushna Jabi <
>>>>>>>>> rushnajabi...@gmail.com> wrote:
>>>>>>>>>
>>>>>>>>>> Thanks for your response.but I am already a member of OpenOffice
>>>>>>>>>> forum,
>>>>>>>>>> I have sent my issues there but "Villeroy" replied that "This is
>>>>>>>>>> too
>>>>>>>>>> sophisticated to be discussed on this forum, I think. You should
>>>>>>>>>> write to
>>>>>>>>>> developers mailing list for LibreOffice or OpenOffice."
>>>>>>>>>>
>>>>>>>>>> Please help..
>>>>>>>>>>
>>>>>>>>>> Thanks & Regards,
>>>>>>>>>>
>>>>>>>>>> Rushna Jabi
>>>>>>>>>> Software Engineer
>>>>>>>>>> 8447294601
>>>>>>>>>>
>>>>>>>>>> On Wed, Jul 5, 2017 at 5:51 PM, FR web forum <ooofo...@free.fr>
>>>>>>>>>> wrote:
>>>>>>>>>>
>>>>>>>>>> > The better place to help end-users is:
>>>>>>>>>> > http://forum.openoffice.org
>>>>>>>>>> >
>>>>>>>>>> > - Mail original -
>>>>>>>>>> > De: "Rushna Jabi" <rushnajabi...@gmail.com>
>>>>>>>>>> > À: dev@openoffice.apache.org
>>>>>>>>>> > Envoyé: Mercredi 5 Juillet 2017 12:04:52
>>>>>>>>>> > Objet: OpenOffice Query
>>>>>>>>>> >
>>>>>>>>>> > Hello Sir,
>>>>>>>>>> >
>>>>>>>>>> > I am working on Java Plugin for OpenOffice.I created a plugin
>>>>>>>>>> but i want to
>>>>>>>>>> > call
>>>>>>>>>> > this plugin before save event.
>>>>>>>>>> >
>>>>>>>>>> > please help me out.
>>>>>>>>>> >
>>>>>>>>>> >
>>>>>>>>>> >
>>>>>>>>>> >
>>>>>>>>>> > Thanks & Regards,
>>>>>>>>>> > Rushna Jabi
>>>>>>>>>> > ACPL Systems Pvt. Ltd.
>>>>>>>>>> >
>>>>>>>>>> > 
>>>>>>>>>> -
>>>>>>>>>> > To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
>>>>>>>>>> > For additional commands, e-mail: dev-h...@openoffice.apache.org
>>>>>>>>>> >
>>>>>>>>>> >
>>>>>>>>>> >
>>>>>>>>>> >
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>>
>>>>>>
>>>>>
>>>>
>>>
>>


Re: OpenOffice Query

2017-07-13 Thread Rushna Jabi
I am working on AOO. I made an OpenOffice plugin on NetBeans environment.
"OnSave" event is working properly.

Thanks a lot Sir for your guidance...





Thanks & Regards,
Rushna Jabi
Software Programmer
8447294601


On Wed, Jul 12, 2017 at 1:52 PM, Damjan Jovanovic <dam...@apache.org> wrote:

> Please see my attached example. I tested it and it does work.
>
> Make sure you are running AOO with the right options:
> ./soffice "-accept=socket,host=localhost,port=8100;urp"
> or match the port to the initialObject string.
>
> For a real-world implementation, you should probably extend WeakBase too,
> in the class implementing the listener.
>
> Regards
> Damjan
>
> On Wed, Jul 12, 2017 at 10:04 AM, Rushna Jabi <rushnajabi...@gmail.com>
> wrote:
>
>> Hello Sir,
>> I have an UNO component and I implemented interface
>> "com.sun.star.document.XDocumentEventBroadCaster", use
>> UnoRuntime.queryInface() to get its XEventBroadcaster interface, calling
>> addDocumentEventListener().
>>
>> please tell me from where I have to get "OnSave" or "OnSaveAs" events.I
>> am not getting.
>>
>>
>>
>> Regards,
>> Rushna Jabi
>> Software Programmer
>> 8447294601
>>
>> On Thu, Jul 6, 2017 at 12:48 PM, Rushna Jabi <rushnajabi...@gmail.com>
>> wrote:
>>
>>> OK,I am working on this.
>>>
>>> Thanks.
>>>
>>>
>>> On Thu, Jul 6, 2017 at 12:25 PM, Damjan Jovanovic <dam...@apache.org>
>>> wrote:
>>>
>>>> You're looking for this then:
>>>> https://wiki.openoffice.org/wiki/Documentation/DevGuide/Offi
>>>> ceDev/Document_Events
>>>>
>>>> I'll only be able to test this later, but once you have an UNO
>>>> component context or service manager, use it to create a
>>>> "com.sun.star.frame.GlobalEventBroadcaster", use
>>>> UnoRuntime.queryInface() to get its XEventBroadcaster interface, call
>>>> addEventListener() to add your listener, and in that listener make sure the
>>>> even name is "OnSave" or "OnSaveDone".
>>>>
>>>> Good luck
>>>> Damjan
>>>>
>>>> On Thu, Jul 6, 2017 at 8:43 AM, Rushna Jabi <rushnajabi...@gmail.com>
>>>> wrote:
>>>>
>>>>> Hello Sir,
>>>>> I know this one,but i don't want to use macro.
>>>>> I have to do it using code. If I use "ag.ion.noa_2.2.3"  Nice
>>>>> OpenOffice Access Library , in this library some methods
>>>>> OnSave(),OnSaveDone() in AbstractDocument class but I am unable to get
>>>>> How to use it.
>>>>>
>>>>> Please help me out.
>>>>>
>>>>>
>>>>> Thanks & Regards,
>>>>> Rushna Jabi
>>>>> Software Engineer
>>>>> 8447294601
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> On Thu, Jul 6, 2017 at 11:49 AM, Damjan Jovanovic <dam...@apache.org>
>>>>> wrote:
>>>>>
>>>>>> Hi Rushna
>>>>>>
>>>>>> Apparently, to do this manually:
>>>>>>
>>>>>> Click on "Tools" -> "Customize".
>>>>>> Go to the "Events" tab.
>>>>>> Select "Save document", and click on the "Macro" button, then assign
>>>>>> your plugin.
>>>>>>
>>>>>> See this for screenshots:
>>>>>> https://wiki.openoffice.org/wiki/Documentation/OOoAuthors_Us
>>>>>> er_Manual/Getting_Started/How_to_run_a_macro
>>>>>>
>>>>>> Or, are you trying to get your plugin to automatically assign itself
>>>>>> to be called on save, so that the above isn't required?
>>>>>>
>>>>>> Regards
>>>>>> Damjan
>>>>>>
>>>>>>
>>>>>>
>>>>>> On Thu, Jul 6, 2017 at 6:52 AM, Rushna Jabi <rushnajabi...@gmail.com>
>>>>>> wrote:
>>>>>>
>>>>>>> Thanks for your response.but I am already a member of OpenOffice
>>>>>>> forum,
>>>>>>> I have sent my issues there but "Villeroy" replied that "This is too
>>>>>>> sophisticated to be discussed on this forum, I think. You should
>>>>>>> write to
>>>>>>> developers mailing list for LibreOffice or OpenOffice."
>>>>>>>
>>>>>>> Please help..
>>>>>>>
>>>>>>> Thanks & Regards,
>>>>>>>
>>>>>>> Rushna Jabi
>>>>>>> Software Engineer
>>>>>>> 8447294601
>>>>>>>
>>>>>>> On Wed, Jul 5, 2017 at 5:51 PM, FR web forum <ooofo...@free.fr>
>>>>>>> wrote:
>>>>>>>
>>>>>>> > The better place to help end-users is:
>>>>>>> > http://forum.openoffice.org
>>>>>>> >
>>>>>>> > - Mail original -
>>>>>>> > De: "Rushna Jabi" <rushnajabi...@gmail.com>
>>>>>>> > À: dev@openoffice.apache.org
>>>>>>> > Envoyé: Mercredi 5 Juillet 2017 12:04:52
>>>>>>> > Objet: OpenOffice Query
>>>>>>> >
>>>>>>> > Hello Sir,
>>>>>>> >
>>>>>>> > I am working on Java Plugin for OpenOffice.I created a plugin but
>>>>>>> i want to
>>>>>>> > call
>>>>>>> > this plugin before save event.
>>>>>>> >
>>>>>>> > please help me out.
>>>>>>> >
>>>>>>> >
>>>>>>> >
>>>>>>> >
>>>>>>> > Thanks & Regards,
>>>>>>> > Rushna Jabi
>>>>>>> > ACPL Systems Pvt. Ltd.
>>>>>>> >
>>>>>>> > 
>>>>>>> -
>>>>>>> > To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
>>>>>>> > For additional commands, e-mail: dev-h...@openoffice.apache.org
>>>>>>> >
>>>>>>> >
>>>>>>> >
>>>>>>> >
>>>>>>>
>>>>>>
>>>>>>
>>>>>
>>>>
>>>
>>
>


Re: OpenOffice Query

2017-07-12 Thread Damjan Jovanovic
Please see my attached example. I tested it and it does work.

Make sure you are running AOO with the right options:
./soffice "-accept=socket,host=localhost,port=8100;urp"
or match the port to the initialObject string.

For a real-world implementation, you should probably extend WeakBase too,
in the class implementing the listener.

Regards
Damjan

On Wed, Jul 12, 2017 at 10:04 AM, Rushna Jabi <rushnajabi...@gmail.com>
wrote:

> Hello Sir,
> I have an UNO component and I implemented interface "com.sun.star.document.
> XDocumentEventBroadCaster", use UnoRuntime.queryInface() to get its
> XEventBroadcaster interface, calling addDocumentEventListener().
>
> please tell me from where I have to get "OnSave" or "OnSaveAs" events.I am
> not getting.
>
>
>
> Regards,
> Rushna Jabi
> Software Programmer
> 8447294601
>
> On Thu, Jul 6, 2017 at 12:48 PM, Rushna Jabi <rushnajabi...@gmail.com>
> wrote:
>
>> OK,I am working on this.
>>
>> Thanks.
>>
>>
>> On Thu, Jul 6, 2017 at 12:25 PM, Damjan Jovanovic <dam...@apache.org>
>> wrote:
>>
>>> You're looking for this then:
>>> https://wiki.openoffice.org/wiki/Documentation/DevGuide/Offi
>>> ceDev/Document_Events
>>>
>>> I'll only be able to test this later, but once you have an UNO component
>>> context or service manager, use it to create a
>>> "com.sun.star.frame.GlobalEventBroadcaster", use
>>> UnoRuntime.queryInface() to get its XEventBroadcaster interface, call
>>> addEventListener() to add your listener, and in that listener make sure the
>>> even name is "OnSave" or "OnSaveDone".
>>>
>>> Good luck
>>> Damjan
>>>
>>> On Thu, Jul 6, 2017 at 8:43 AM, Rushna Jabi <rushnajabi...@gmail.com>
>>> wrote:
>>>
>>>> Hello Sir,
>>>> I know this one,but i don't want to use macro.
>>>> I have to do it using code. If I use "ag.ion.noa_2.2.3"  Nice
>>>> OpenOffice Access Library , in this library some methods
>>>> OnSave(),OnSaveDone() in AbstractDocument class but I am unable to get
>>>> How to use it.
>>>>
>>>> Please help me out.
>>>>
>>>>
>>>> Thanks & Regards,
>>>> Rushna Jabi
>>>> Software Engineer
>>>> 8447294601
>>>>
>>>>
>>>>
>>>>
>>>> On Thu, Jul 6, 2017 at 11:49 AM, Damjan Jovanovic <dam...@apache.org>
>>>> wrote:
>>>>
>>>>> Hi Rushna
>>>>>
>>>>> Apparently, to do this manually:
>>>>>
>>>>> Click on "Tools" -> "Customize".
>>>>> Go to the "Events" tab.
>>>>> Select "Save document", and click on the "Macro" button, then assign
>>>>> your plugin.
>>>>>
>>>>> See this for screenshots:
>>>>> https://wiki.openoffice.org/wiki/Documentation/OOoAuthors_Us
>>>>> er_Manual/Getting_Started/How_to_run_a_macro
>>>>>
>>>>> Or, are you trying to get your plugin to automatically assign itself
>>>>> to be called on save, so that the above isn't required?
>>>>>
>>>>> Regards
>>>>> Damjan
>>>>>
>>>>>
>>>>>
>>>>> On Thu, Jul 6, 2017 at 6:52 AM, Rushna Jabi <rushnajabi...@gmail.com>
>>>>> wrote:
>>>>>
>>>>>> Thanks for your response.but I am already a member of OpenOffice
>>>>>> forum,
>>>>>> I have sent my issues there but "Villeroy" replied that "This is too
>>>>>> sophisticated to be discussed on this forum, I think. You should
>>>>>> write to
>>>>>> developers mailing list for LibreOffice or OpenOffice."
>>>>>>
>>>>>> Please help..
>>>>>>
>>>>>> Thanks & Regards,
>>>>>>
>>>>>> Rushna Jabi
>>>>>> Software Engineer
>>>>>> 8447294601
>>>>>>
>>>>>> On Wed, Jul 5, 2017 at 5:51 PM, FR web forum <ooofo...@free.fr>
>>>>>> wrote:
>>>>>>
>>>>>> > The better place to help end-users is:
>>>>>> > http://forum.openoffice.org
>>>>>> >
>>>>>> > - Ma

Re: OpenOffice Query

2017-07-06 Thread Rushna Jabi
OK,I am working on this.

Thanks.


On Thu, Jul 6, 2017 at 12:25 PM, Damjan Jovanovic <dam...@apache.org> wrote:

> You're looking for this then:
> https://wiki.openoffice.org/wiki/Documentation/DevGuide/
> OfficeDev/Document_Events
>
> I'll only be able to test this later, but once you have an UNO component
> context or service manager, use it to create a 
> "com.sun.star.frame.GlobalEventBroadcaster",
> use UnoRuntime.queryInface() to get its XEventBroadcaster interface, call
> addEventListener() to add your listener, and in that listener make sure the
> even name is "OnSave" or "OnSaveDone".
>
> Good luck
> Damjan
>
> On Thu, Jul 6, 2017 at 8:43 AM, Rushna Jabi <rushnajabi...@gmail.com>
> wrote:
>
>> Hello Sir,
>> I know this one,but i don't want to use macro.
>> I have to do it using code. If I use "ag.ion.noa_2.2.3"  Nice OpenOffice
>> Access Library , in this library some methods
>> OnSave(),OnSaveDone() in AbstractDocument class but I am unable to get
>> How to use it.
>>
>> Please help me out.
>>
>>
>> Thanks & Regards,
>> Rushna Jabi
>> Software Engineer
>> 8447294601
>>
>>
>>
>>
>> On Thu, Jul 6, 2017 at 11:49 AM, Damjan Jovanovic <dam...@apache.org>
>> wrote:
>>
>>> Hi Rushna
>>>
>>> Apparently, to do this manually:
>>>
>>> Click on "Tools" -> "Customize".
>>> Go to the "Events" tab.
>>> Select "Save document", and click on the "Macro" button, then assign
>>> your plugin.
>>>
>>> See this for screenshots:
>>> https://wiki.openoffice.org/wiki/Documentation/OOoAuthors_Us
>>> er_Manual/Getting_Started/How_to_run_a_macro
>>>
>>> Or, are you trying to get your plugin to automatically assign itself to
>>> be called on save, so that the above isn't required?
>>>
>>> Regards
>>> Damjan
>>>
>>>
>>>
>>> On Thu, Jul 6, 2017 at 6:52 AM, Rushna Jabi <rushnajabi...@gmail.com>
>>> wrote:
>>>
>>>> Thanks for your response.but I am already a member of OpenOffice forum,
>>>> I have sent my issues there but "Villeroy" replied that "This is too
>>>> sophisticated to be discussed on this forum, I think. You should write
>>>> to
>>>> developers mailing list for LibreOffice or OpenOffice."
>>>>
>>>> Please help..
>>>>
>>>> Thanks & Regards,
>>>>
>>>> Rushna Jabi
>>>> Software Engineer
>>>> 8447294601
>>>>
>>>> On Wed, Jul 5, 2017 at 5:51 PM, FR web forum <ooofo...@free.fr> wrote:
>>>>
>>>> > The better place to help end-users is:
>>>> > http://forum.openoffice.org
>>>> >
>>>> > - Mail original -
>>>> > De: "Rushna Jabi" <rushnajabi...@gmail.com>
>>>> > À: dev@openoffice.apache.org
>>>> > Envoyé: Mercredi 5 Juillet 2017 12:04:52
>>>> > Objet: OpenOffice Query
>>>> >
>>>> > Hello Sir,
>>>> >
>>>> > I am working on Java Plugin for OpenOffice.I created a plugin but i
>>>> want to
>>>> > call
>>>> > this plugin before save event.
>>>> >
>>>> > please help me out.
>>>> >
>>>> >
>>>> >
>>>> >
>>>> > Thanks & Regards,
>>>> > Rushna Jabi
>>>> > ACPL Systems Pvt. Ltd.
>>>> >
>>>> > -
>>>> > To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
>>>> > For additional commands, e-mail: dev-h...@openoffice.apache.org
>>>> >
>>>> >
>>>> >
>>>> >
>>>>
>>>
>>>
>>
>


Re: OpenOffice Query

2017-07-06 Thread Damjan Jovanovic
You're looking for this then:
https://wiki.openoffice.org/wiki/Documentation/DevGuide/OfficeDev/Document_Events

I'll only be able to test this later, but once you have an UNO component
context or service manager, use it to create a
"com.sun.star.frame.GlobalEventBroadcaster", use UnoRuntime.queryInface()
to get its XEventBroadcaster interface, call addEventListener() to add your
listener, and in that listener make sure the even name is "OnSave" or
"OnSaveDone".

Good luck
Damjan

On Thu, Jul 6, 2017 at 8:43 AM, Rushna Jabi <rushnajabi...@gmail.com> wrote:

> Hello Sir,
> I know this one,but i don't want to use macro.
> I have to do it using code. If I use "ag.ion.noa_2.2.3"  Nice OpenOffice
> Access Library , in this library some methods
> OnSave(),OnSaveDone() in AbstractDocument class but I am unable to get How
> to use it.
>
> Please help me out.
>
>
> Thanks & Regards,
> Rushna Jabi
> Software Engineer
> 8447294601
>
>
>
>
> On Thu, Jul 6, 2017 at 11:49 AM, Damjan Jovanovic <dam...@apache.org>
> wrote:
>
>> Hi Rushna
>>
>> Apparently, to do this manually:
>>
>> Click on "Tools" -> "Customize".
>> Go to the "Events" tab.
>> Select "Save document", and click on the "Macro" button, then assign your
>> plugin.
>>
>> See this for screenshots:
>> https://wiki.openoffice.org/wiki/Documentation/OOoAuthors_Us
>> er_Manual/Getting_Started/How_to_run_a_macro
>>
>> Or, are you trying to get your plugin to automatically assign itself to
>> be called on save, so that the above isn't required?
>>
>> Regards
>> Damjan
>>
>>
>>
>> On Thu, Jul 6, 2017 at 6:52 AM, Rushna Jabi <rushnajabi...@gmail.com>
>> wrote:
>>
>>> Thanks for your response.but I am already a member of OpenOffice forum,
>>> I have sent my issues there but "Villeroy" replied that "This is too
>>> sophisticated to be discussed on this forum, I think. You should write to
>>> developers mailing list for LibreOffice or OpenOffice."
>>>
>>> Please help..
>>>
>>> Thanks & Regards,
>>>
>>> Rushna Jabi
>>> Software Engineer
>>> 8447294601
>>>
>>> On Wed, Jul 5, 2017 at 5:51 PM, FR web forum <ooofo...@free.fr> wrote:
>>>
>>> > The better place to help end-users is:
>>> > http://forum.openoffice.org
>>> >
>>> > - Mail original -
>>> > De: "Rushna Jabi" <rushnajabi...@gmail.com>
>>> > À: dev@openoffice.apache.org
>>> > Envoyé: Mercredi 5 Juillet 2017 12:04:52
>>> > Objet: OpenOffice Query
>>> >
>>> > Hello Sir,
>>> >
>>> > I am working on Java Plugin for OpenOffice.I created a plugin but i
>>> want to
>>> > call
>>> > this plugin before save event.
>>> >
>>> > please help me out.
>>> >
>>> >
>>> >
>>> >
>>> > Thanks & Regards,
>>> > Rushna Jabi
>>> > ACPL Systems Pvt. Ltd.
>>> >
>>> > -
>>> > To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
>>> > For additional commands, e-mail: dev-h...@openoffice.apache.org
>>> >
>>> >
>>> >
>>> >
>>>
>>
>>
>


Re: OpenOffice Query

2017-07-06 Thread Rushna Jabi
Hello Sir,
I know this one,but i don't want to use macro.
I have to do it using code. If I use "ag.ion.noa_2.2.3"  Nice OpenOffice
Access Library , in this library some methods
OnSave(),OnSaveDone() in AbstractDocument class but I am unable to get How
to use it.

Please help me out.


Thanks & Regards,
Rushna Jabi
Software Engineer
8447294601




On Thu, Jul 6, 2017 at 11:49 AM, Damjan Jovanovic <dam...@apache.org> wrote:

> Hi Rushna
>
> Apparently, to do this manually:
>
> Click on "Tools" -> "Customize".
> Go to the "Events" tab.
> Select "Save document", and click on the "Macro" button, then assign your
> plugin.
>
> See this for screenshots:
> https://wiki.openoffice.org/wiki/Documentation/OOoAuthors_
> User_Manual/Getting_Started/How_to_run_a_macro
>
> Or, are you trying to get your plugin to automatically assign itself to be
> called on save, so that the above isn't required?
>
> Regards
> Damjan
>
>
>
> On Thu, Jul 6, 2017 at 6:52 AM, Rushna Jabi <rushnajabi...@gmail.com>
> wrote:
>
>> Thanks for your response.but I am already a member of OpenOffice forum,
>> I have sent my issues there but "Villeroy" replied that "This is too
>> sophisticated to be discussed on this forum, I think. You should write to
>> developers mailing list for LibreOffice or OpenOffice."
>>
>> Please help..
>>
>> Thanks & Regards,
>>
>> Rushna Jabi
>> Software Engineer
>> 8447294601
>>
>> On Wed, Jul 5, 2017 at 5:51 PM, FR web forum <ooofo...@free.fr> wrote:
>>
>> > The better place to help end-users is:
>> > http://forum.openoffice.org
>> >
>> > - Mail original -
>> > De: "Rushna Jabi" <rushnajabi...@gmail.com>
>> > À: dev@openoffice.apache.org
>> > Envoyé: Mercredi 5 Juillet 2017 12:04:52
>> > Objet: OpenOffice Query
>> >
>> > Hello Sir,
>> >
>> > I am working on Java Plugin for OpenOffice.I created a plugin but i
>> want to
>> > call
>> > this plugin before save event.
>> >
>> > please help me out.
>> >
>> >
>> >
>> >
>> > Thanks & Regards,
>> > Rushna Jabi
>> > ACPL Systems Pvt. Ltd.
>> >
>> > -
>> > To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
>> > For additional commands, e-mail: dev-h...@openoffice.apache.org
>> >
>> >
>> >
>> >
>>
>
>


Re: OpenOffice Query

2017-07-06 Thread Damjan Jovanovic
Hi Rushna

Apparently, to do this manually:

Click on "Tools" -> "Customize".
Go to the "Events" tab.
Select "Save document", and click on the "Macro" button, then assign your
plugin.

See this for screenshots:
https://wiki.openoffice.org/wiki/Documentation/OOoAuthors_User_Manual/Getting_Started/How_to_run_a_macro

Or, are you trying to get your plugin to automatically assign itself to be
called on save, so that the above isn't required?

Regards
Damjan



On Thu, Jul 6, 2017 at 6:52 AM, Rushna Jabi <rushnajabi...@gmail.com> wrote:

> Thanks for your response.but I am already a member of OpenOffice forum,
> I have sent my issues there but "Villeroy" replied that "This is too
> sophisticated to be discussed on this forum, I think. You should write to
> developers mailing list for LibreOffice or OpenOffice."
>
> Please help..
>
> Thanks & Regards,
>
> Rushna Jabi
> Software Engineer
> 8447294601
>
> On Wed, Jul 5, 2017 at 5:51 PM, FR web forum <ooofo...@free.fr> wrote:
>
> > The better place to help end-users is:
> > http://forum.openoffice.org
> >
> > - Mail original -
> > De: "Rushna Jabi" <rushnajabi...@gmail.com>
> > À: dev@openoffice.apache.org
> > Envoyé: Mercredi 5 Juillet 2017 12:04:52
> > Objet: OpenOffice Query
> >
> > Hello Sir,
> >
> > I am working on Java Plugin for OpenOffice.I created a plugin but i want
> to
> > call
> > this plugin before save event.
> >
> > please help me out.
> >
> >
> >
> >
> > Thanks & Regards,
> > Rushna Jabi
> > ACPL Systems Pvt. Ltd.
> >
> > -
> > To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> > For additional commands, e-mail: dev-h...@openoffice.apache.org
> >
> >
> >
> >
>


Re: OpenOffice Query

2017-07-06 Thread Rushna Jabi
Thanks for your response.but I am already a member of OpenOffice forum,
I have sent my issues there but "Villeroy" replied that "This is too
sophisticated to be discussed on this forum, I think. You should write to
developers mailing list for LibreOffice or OpenOffice."

Please help..

Thanks & Regards,

Rushna Jabi
Software Engineer
8447294601

On Wed, Jul 5, 2017 at 5:51 PM, FR web forum <ooofo...@free.fr> wrote:

> The better place to help end-users is:
> http://forum.openoffice.org
>
> - Mail original -
> De: "Rushna Jabi" <rushnajabi...@gmail.com>
> À: dev@openoffice.apache.org
> Envoyé: Mercredi 5 Juillet 2017 12:04:52
> Objet: OpenOffice Query
>
> Hello Sir,
>
> I am working on Java Plugin for OpenOffice.I created a plugin but i want to
> call
> this plugin before save event.
>
> please help me out.
>
>
>
>
> Thanks & Regards,
> Rushna Jabi
> ACPL Systems Pvt. Ltd.
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
> For additional commands, e-mail: dev-h...@openoffice.apache.org
>
>
>
>


Re: OpenOffice Query

2017-07-05 Thread FR web forum
The better place to help end-users is:
http://forum.openoffice.org

- Mail original -
De: "Rushna Jabi" <rushnajabi...@gmail.com>
À: dev@openoffice.apache.org
Envoyé: Mercredi 5 Juillet 2017 12:04:52
Objet: OpenOffice Query

Hello Sir,

I am working on Java Plugin for OpenOffice.I created a plugin but i want to
call
this plugin before save event.

please help me out.




Thanks & Regards,
Rushna Jabi
ACPL Systems Pvt. Ltd.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



OpenOffice Query

2017-07-05 Thread Rushna Jabi
Hello Sir,

I am working on Java Plugin for OpenOffice.I created a plugin but i want to
call
this plugin before save event.

please help me out.




Thanks & Regards,
Rushna Jabi
ACPL Systems Pvt. Ltd.


OpenOffice plugin Query

2017-07-03 Thread Rushna Jabi
Hello Sir,
I want call my java plugin on save event in OpenOffice.

Please Help me out.





Regards,
Rushna Jabi
Software Engineer
8447294601


Re: Query about Open Office

2016-11-25 Thread Pedro

Hi Tom

It looks like the best answer is to keep and old XP computer to look 
after

this until we retire, as we have approx 4,000 CPH files


I would advise to convert those files to a recent and open file format 
(such as SVG or ODG) as soon (and as fast) as possible.
Your XP computer will eventually stop working, not because Microsoft 
doesn't support the OS, but because the hardware will fail.
You really don't want to wait for the day you really need some of the 
files to find out that your old PC won't even boot...


Just my 2 cents.
Pedro


Cheers
Tom

Tom & Rose-Marie Kerr
Box 220, 39 Bridge St East
Campbellford, ON, K0L 1L0
T: 705-653-4335
F: 705-653-1655
www.FrogsWhiskersInk.com
www.KerrsCornerBooks.com

On 23 November 2016 at 14:08, Marcus  wrote:


Am 11/23/2016 12:36 PM, schrieb Peter Kovacs:


I am sorry. I do not think so.
Can Corel export to another file format?



as OpenOffice has no import filter for this file format, you have 
indeed

not many possibilities:

1. If still available, install CPH and see if there are other suitable
file formats you can export your *.cfph fikes to. I'm sorry, I don't 
know

this so I cannot tell you.

2. Try to find out if this software has a successor or if another 
Corel

software is able to open the files.

3. Maybe this forums thread [1] is helping you.

4. Or this one [2].

[1] http://www.vinylforum.org/smf/all-other-software/need-help-c
onverting-cph-file/msg65866#msg65866

[2] http://forum.corel.com/EN/viewtopic.php?f=52=45318

I hope this helps you at least a bit.

Marcus



Tom Kerr  schrieb am Mi., 23. Nov. 2016, 08:18:


We are getting new computers in the shop and our computer guy 
suggested we

contact you

We currently have many files made from Corel Print House V 5.00
The files are CPH files

Does Open Office have the ability to open CPH files?






-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Query about Open Office

2016-11-24 Thread Tom Kerr
Thank you for your time and effort

It looks like the best answer is to keep and old XP computer to look after
this until we retire, as we have approx 4,000 CPH files

Cheers
Tom

Tom & Rose-Marie Kerr
Box 220, 39 Bridge St East
Campbellford, ON, K0L 1L0
T: 705-653-4335
F: 705-653-1655
www.FrogsWhiskersInk.com
www.KerrsCornerBooks.com

On 23 November 2016 at 14:08, Marcus  wrote:

> Am 11/23/2016 12:36 PM, schrieb Peter Kovacs:
>
>> I am sorry. I do not think so.
>> Can Corel export to another file format?
>>
>
> as OpenOffice has no import filter for this file format, you have indeed
> not many possibilities:
>
> 1. If still available, install CPH and see if there are other suitable
> file formats you can export your *.cfph fikes to. I'm sorry, I don't know
> this so I cannot tell you.
>
> 2. Try to find out if this software has a successor or if another Corel
> software is able to open the files.
>
> 3. Maybe this forums thread [1] is helping you.
>
> 4. Or this one [2].
>
> [1] http://www.vinylforum.org/smf/all-other-software/need-help-c
> onverting-cph-file/msg65866#msg65866
>
> [2] http://forum.corel.com/EN/viewtopic.php?f=52=45318
>
> I hope this helps you at least a bit.
>
> Marcus
>
>
>
> Tom Kerr  schrieb am Mi., 23. Nov. 2016, 08:18:
>>
>> We are getting new computers in the shop and our computer guy suggested we
>>> contact you
>>>
>>> We currently have many files made from Corel Print House V 5.00
>>> The files are CPH files
>>>
>>> Does Open Office have the ability to open CPH files?
>>>
>>


Re: Query about Open Office

2016-11-23 Thread Marcus

Am 11/23/2016 12:36 PM, schrieb Peter Kovacs:

I am sorry. I do not think so.
Can Corel export to another file format?


as OpenOffice has no import filter for this file format, you have indeed 
not many possibilities:


1. If still available, install CPH and see if there are other suitable 
file formats you can export your *.cfph fikes to. I'm sorry, I don't 
know this so I cannot tell you.


2. Try to find out if this software has a successor or if another Corel 
software is able to open the files.


3. Maybe this forums thread [1] is helping you.

4. Or this one [2].

[1] 
http://www.vinylforum.org/smf/all-other-software/need-help-converting-cph-file/msg65866#msg65866


[2] http://forum.corel.com/EN/viewtopic.php?f=52=45318

I hope this helps you at least a bit.

Marcus




Tom Kerr  schrieb am Mi., 23. Nov. 2016, 08:18:


We are getting new computers in the shop and our computer guy suggested we
contact you

We currently have many files made from Corel Print House V 5.00
The files are CPH files

Does Open Office have the ability to open CPH files?


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Query about Open Office

2016-11-23 Thread JZA
You could convert it to svg and draw can import it

On Nov 23, 2016 6:36 AM, "Peter Kovacs"  wrote:

> Hello,
>
> I am sorry. I do not think so.
> Does Open Office meet your requirements at all?
> Corel Print House comes with an own Grafik designer. Not sure if our
> toolset for pictures etc is sufficient for your work.
>
> However I think this could be a nice feature in the future.
> Can Corel export to another file format?
>
> All the best
> Peter
>
> Tom Kerr  schrieb am Mi., 23. Nov. 2016, 08:18:
>
> > Good morning
> >
> > We are getting new computers in the shop and our computer guy suggested
> we
> > contact you
> >
> > We currently have many files made from Corel Print House V 5.00
> > The files are CPH files
> >
> > Does Open Office have the ability to open CPH files?
> >
> > Thanking you in advance
> >
> > Cheers
> > Tom
> >
> > Tom & Rose-Marie Kerr
> > Box 220, 39 Bridge St East
> > Campbellford, ON, K0L 1L0
> > T: 705-653-4335
> > F: 705-653-1655
> > www.FrogsWhiskersInk.com
> > www.KerrsCornerBooks.com
> >
> --
>
> Disclaimer: Diese Nachricht stammt aus einem Google Account. Ihre Antwort
> wird in der Google Cloud Gespeichert und durch Google Algorythmen zwecks
> werbeanaöysen gescannt. Es ist derzeit nicht auszuschließen das ihre
> Nachricht auch durch einen NSA Mitarbeiter geprüft wird. Durch
> kommunikation mit diesen Account stimmen Sie zu das ihre Mail, ihre
> Kontaktdaten und die Termine die Sie mit mir vereinbaren online zu Google
> konditionen in der Googlecloud gespeichert wird. Sollten sie dies nicht
> wünschen kontaktieren sie mich bitte Umgehend um z.B. alternativen zu
> verhandeln.
>


Re: Query about Open Office

2016-11-23 Thread Peter Kovacs
Hello,

I am sorry. I do not think so.
Does Open Office meet your requirements at all?
Corel Print House comes with an own Grafik designer. Not sure if our
toolset for pictures etc is sufficient for your work.

However I think this could be a nice feature in the future.
Can Corel export to another file format?

All the best
Peter

Tom Kerr  schrieb am Mi., 23. Nov. 2016, 08:18:

> Good morning
>
> We are getting new computers in the shop and our computer guy suggested we
> contact you
>
> We currently have many files made from Corel Print House V 5.00
> The files are CPH files
>
> Does Open Office have the ability to open CPH files?
>
> Thanking you in advance
>
> Cheers
> Tom
>
> Tom & Rose-Marie Kerr
> Box 220, 39 Bridge St East
> Campbellford, ON, K0L 1L0
> T: 705-653-4335
> F: 705-653-1655
> www.FrogsWhiskersInk.com
> www.KerrsCornerBooks.com
>
-- 

Disclaimer: Diese Nachricht stammt aus einem Google Account. Ihre Antwort
wird in der Google Cloud Gespeichert und durch Google Algorythmen zwecks
werbeanaöysen gescannt. Es ist derzeit nicht auszuschließen das ihre
Nachricht auch durch einen NSA Mitarbeiter geprüft wird. Durch
kommunikation mit diesen Account stimmen Sie zu das ihre Mail, ihre
Kontaktdaten und die Termine die Sie mit mir vereinbaren online zu Google
konditionen in der Googlecloud gespeichert wird. Sollten sie dies nicht
wünschen kontaktieren sie mich bitte Umgehend um z.B. alternativen zu
verhandeln.


Query about Open Office

2016-11-22 Thread Tom Kerr
Good morning

We are getting new computers in the shop and our computer guy suggested we
contact you

We currently have many files made from Corel Print House V 5.00
The files are CPH files

Does Open Office have the ability to open CPH files?

Thanking you in advance

Cheers
Tom

Tom & Rose-Marie Kerr
Box 220, 39 Bridge St East
Campbellford, ON, K0L 1L0
T: 705-653-4335
F: 705-653-1655
www.FrogsWhiskersInk.com
www.KerrsCornerBooks.com


RE: Query on C++ UCB XInteractionHandler interface - is it possible to have/write a non-UI-based interface to respond on?

2016-02-06 Thread John Dougrez-Lewis
Thanks Stephen,

I've been looking at interactionhandler.cxx today and I believe the best way
forward is to take the uui source implementation as a base and then
refactor, replacing all of the XDialog-derived classes with classes that
query for the same information through an interface passed in as part of a
custom method called on startup. There are only about 10 or so dialogs and
some message boxes as well that need to be dealt with.

That should take care of removing all of the GUI within the uui code, and
then it's just down to tracking down other UI elements (Certificate Viewers
etc) in external modules and rewrite that code as well.


Does anyone know of any UCB provider code been written for commercial
hosting services - DropBox, Google, Microsoft offerings etc? - It would be
good to be able to leverage off of it.


Regards,

John


-Original Message-
From: Stephan Bergmann [mailto:sberg...@redhat.com] 
Sent: 04 February 2016 10:47
To: dev@openoffice.apache.org
Subject: Re: Query on C++ UCB XInteractionHandler interface - is it possible
to have/write a non-UI-based interface to respond on?

On 02/02/2016 09:56 PM, John Dougrez-Lewis wrote:
> I'm looking at coding a pet C++ project to use the Content Brokers 
> provided by the UCB/UNO subsystem.
>
> I note that the XInteractionHandler-derived classes can be used to 
> handle responses to supply e.g. user/pswd details for Authentication etc.
>
>  From a class diagram I've found, it looks like the 
> XInteractionHandler may be a UI/frame type class.
>
> If I want to respond programmatically from my console (non-GUI) 
> program, is there a way of doing this - either by writing my own 
> non-UI response handlers or by using pre-existing handlers (if they 
> exist)? Is there a non-UI route in to providing a required response?
>
> Any pointers/links would be gratefully appreciated.

Yeah, you need to implement your own XInteractionHandler.  The general one
in uui/source/interactionhandler.cxx is indeed designed for GUI interaction,
but there is e.g. 
desktop/source/lib/lokinteractionhandler.cxx in the LibreOffice code base
that is an example of a more programmatic handling of interaction requests.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Query on C++ UCB XInteractionHandler interface - is it possible to have/write a non-UI-based interface to respond on?

2016-02-04 Thread Stephan Bergmann

On 02/02/2016 09:56 PM, John Dougrez-Lewis wrote:

I'm looking at coding a pet C++ project to use the Content Brokers provided
by the UCB/UNO subsystem.

I note that the XInteractionHandler-derived classes can be used to handle
responses to supply e.g. user/pswd details for Authentication etc.

 From a class diagram I've found, it looks like the XInteractionHandler may
be a UI/frame type class.

If I want to respond programmatically from my console (non-GUI) program, is
there a way of doing this - either by writing my own non-UI response
handlers or by using pre-existing handlers (if they exist)? Is there a
non-UI route in to providing a required response?

Any pointers/links would be gratefully appreciated.


Yeah, you need to implement your own XInteractionHandler.  The general 
one in uui/source/interactionhandler.cxx is indeed designed for GUI 
interaction, but there is e.g. 
desktop/source/lib/lokinteractionhandler.cxx in the LibreOffice code 
base that is an example of a more programmatic handling of interaction 
requests.


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Query on C++ UCB XInteractionHandler interface - is it possible to have/write a non-UI-based interface to respond on?

2016-02-02 Thread John Dougrez-Lewis
Hi,

 

I'm looking at coding a pet C++ project to use the Content Brokers provided
by the UCB/UNO subsystem.

 

I note that the XInteractionHandler-derived classes can be used to handle
responses to supply e.g. user/pswd details for Authentication etc.

 

>From a class diagram I've found, it looks like the XInteractionHandler may
be a UI/frame type class.

 

If I want to respond programmatically from my console (non-GUI) program, is
there a way of doing this - either by writing my own non-UI response
handlers or by using pre-existing handlers (if they exist)? Is there a
non-UI route in to providing a required response?

 

Any pointers/links would be gratefully appreciated.

 

Regards,

 

John

 



Re: Building query: .bootstrap

2015-08-16 Thread Andrea Pescetti

On 04/07/2015 Jason Marshall wrote:

I execute .bootstrap, but I note the following: When the missing
tarballs and external sources are downloaded, the script seems to
identify that for some of these, the checksum does not match that
expected.  Could anyone tell me why this would occur and if this is
an issue from a security standpoint?  I. e. is it possible that what
is being downloaded by .bootstrap is unsafe?  Also, is it okay to
simply progress to the build anyway?


Since this just happened to me again, I decided to write into
https://bz.apache.org/ooo/show_bug.cgi?id=126469
all the technical details I sent here long ago.

If you want to play with that, this is another fix that would be nice to 
have in 4.1.2 even if it only improves our build speed and has no 
visible impact on users. I quickly investigated it several months ago, 
so if you need more information just ask, but the above contains all 
technical explanations: in short, the Perl code that downloads the 
archive actually downloads a decompressed version. The solution would be 
to enforce that compression is respected.


As for your other questions, each download is attempted twice from two 
different sources, see the many URL1 and URL2 in 
http://svn.apache.org/viewvc/openoffice/trunk/main/external_deps.lst?view=markup 
; so when the first one fails, it is discarded, download proceeds with 
the second URL and there we don't have the problem. The ./bootstrap 
phase will fail if both servers fails, but the second one plays in the 
right way with our Perl script so it never happens that the whole 
process fails. Archives that do not have the expected checksum are 
deleted so the output of ./bootstrap is always safe, but it takes more 
attempts than necessary due to the above bug.


Regards,
  Andrea.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Build Query

2015-07-14 Thread Jason Marshall



Hi everyone
 
I am at the final stage of building Openoffice on a 32-bit Windows 7 platform, 
such that I have called 'build --all' and the script has commenced running.  
All has been well until the script has stopped some way through with the 
following error:
 
=
Building module comphelper
=
Entering /tmp/aoo-4.1.1/main/comphelper/prj
cd ..  make -s -r -j1make -s -r deliverlog
[ info  ALL ] LinkTarget Library/isal.lib not defined: Assuming headers to be 
there!
[ info  ALL ] LinkTarget Library/icppuhelper.lib not defined: Assuming headers 
to be there!
[ info  ALL ] LinkTarget Library/icppu.lib not defined: Assuming headers to be 
there!
[ info  ALL ] LinkTarget Library/iucbhelper.lib not defined: Assuming headers 
to be there!
[ info  ALL ] LinkTarget Library/ivos.lib not defined: Assuming headers to be 
there!
[ info  ALL ] LinkTarget Library/msvcprt.lib not defined: Assuming headers to 
be there!
[ info  ALL ] LinkTarget Library/uwinapi.lib not defined: Assuming headers to 
be there!
[ info  ALL ] LinkTarget Library/kernel32.lib not defined: Assuming headers to 
be there!
[ info  ALL ] LinkTarget Library/msvcrt.lib not defined: Assuming headers to be 
there!
[ info  ALL ] LinkTarget Library/oldnames.lib not defined: Assuming headers to 
be there!
[ build PKG ] comphelper_inc
[ build PCH ] precompiled_comphelper
precompiled_comphelper.cxx
awk: fatal: can't open source file 
`C:/cygwinc:/cygwin/tmp/aoo-4.1.1/main/solenv/gbuild/processdeps.awk' for 
reading (No such file or directory)
C:/cygwin/tmp/aoo-4.1.1/main/solenv/gbuild/PrecompiledHeaders.mk:49: recipe for 
target 
'/tmp/aoo-4.1.1/main/solver/411/wntmsci12.pro/workdir/PrecompiledHeader/nodebug/precompiled_comphelper.hxx.pch'
 failed
make: *** 
[/tmp/aoo-4.1.1/main/solver/411/wntmsci12.pro/workdir/PrecompiledHeader/nodebug/precompiled_comphelper.hxx.pch]
 Error 2
dmake:  Error code 2, while making 'all'
1 module(s):
comphelper
need(s) to be rebuilt
Reason(s):
ERROR: error 65280 occurred while making /tmp/aoo-4.1.1/main/comphelper/prj
When you have fixed the errors in that module you can resume the build by 
running:
build --all:comphelper
 
I have noted that likely the reason for this is because the script seems to be 
attempting to access the file 'processdeps.awk' but using an erroneous and 
non-sensical directory as follows:
 
C:/cygwinc:/cygwin/tmp/aoo-4.1.1/main/solenv/gbuild/processdeps.awk
 
As you can see, the script appears to have somehow used 'c:\cygwin' twice at 
the start of the path.
 
I have manually checked for the 'processdeps.awk' file and can confirm that it 
does exist, but at the following path:
 
C:/cygwin/tmp/aoo-4.1.1/main/solenv/gbuild/
 
My assumption would be that somewhere a conversion between Windows and Cygwin 
paths has gone wrong.  While I do have some knowledge of shell scripting and 
have looked at the file that the 'build --all' command calls, it is a very long 
script and I have found it difficult to identify where this erroneous directory 
is being generated and then an attempt to access the file is actually made.  I 
suspect that my difficulty is partly in not knowing from first principles how 
the build script works, meaning that I am attempting to reverse-engineer the 
script in order to track-down where things are going wrong.  I was able to do a 
similar thing in the 'bootstrap' script for a different issue, but this is 
perhaps a simpler script. Would anyone have any ideas as to why the problem 
above is occurring and how I may address this in order to complete the build? 
Thank you for your help. Best regards Jason

  

RE: Building query: .bootstrap

2015-07-05 Thread Jason Marshall
Hello
 
With reference to the query below and having examined the 'bootstrap' script, I 
realised that the script was expecting to be able to 'cd' to a directory named 
'DMAKE_4_12', using the comment below:
 
cd $dmake_directory_name || exit
 
However, the following command in the 'bootstrap' script resulted in the dmake 
archive being extracted to a directoyr named 'dmake-DMAKE_4_12' resulting in 
the above command failing, as indicated in my original e-mail below.
 
tar -xzf dmake_full_package_name
 
Accordingly, I manually added the following line to the 'bootstrap' script 
following the tar command, which renames the directory where dmake was 
extracted to, so allowing the script to change to the expected directory:
 
mv dmake-DMAKE_4_12 $dmake_directory_name
 
The workaround above is perhaps obvious when isolated as above, but I am 
unclear if this means that there is essentially an error in the 'bootstrap' 
script which is included or created as part of the download of the source code. 
 Or alternatively perhaps my own specific platform (Windows 7 32 bit) is 
causing this problem.
 
Anyway, having made the change above, bootstrap appears to have run and 
concluded without an error message.
 
Kind regards
 
Jason

 
 From: j_k_marshall_2...@live.com
 To: dev@openoffice.apache.org
 Subject: Building query: .bootstrap
 Date: Sat, 4 Jul 2015 15:52:32 +
 
 Hi everyone
  
 I am building OpenOffice on a Windows 7 system and have got so far as 
 successfully running .configure.  Following this, I execute .bootstrap, but I 
 note the following:
  
 * When the missing tarballs and external sources are downloaded, the script 
 seems to identify that for some of these, the checksum does not match that 
 expected.  Could anyone tell me why this would occur and if this is an issue 
 from a security standpoint?  I. e. is it possible that what is being 
 downloaded by .bootstrap is unsafe?  Also, is it okay to simply progress to 
 the build anyway?
  
 * .bootstrap ends with the following:
  
 DMAKE_4_12.tar.gz exists
 epm-4.2.tar.gz exists
 making and entering 
 C:/cygwin/tmp/aoo-4.1.1/main/solenv/wntmsci12.pro/misc/build/
 unpacking 
 /tmp/aoo-4.1.1/ext_sources/7abf18f59ca96a3d463386e6d1456138-DMAKE_4_12.tar.gz
 entering DMAKE_4_12
 ./bootstrap: line 100: cd: DMAKE_4_12: No such file or directory
  
 The message clearly tells me that a directory does not exist, but I would 
 assume that this directory would be created automatically.  Would anybody 
 know what has gone wrong here?
  
 Thank you for your help.
  
 Kind regards
  
 Jason
 
  

Re: Building query: .bootstrap

2015-07-05 Thread Kay Schenk


On 07/05/2015 02:28 PM, Jason Marshall wrote:
 Hello
 
 With reference to the query below and having examined the 'bootstrap'
 script, I realised that the script was expecting to be able to 'cd'
 to a directory named 'DMAKE_4_12', using the comment below:
 
 cd $dmake_directory_name || exit
 
 However, the following command in the 'bootstrap' script resulted in
 the dmake archive being extracted to a directoyr named
 'dmake-DMAKE_4_12' resulting in the above command failing, as
 indicated in my original e-mail below.
 
 tar -xzf dmake_full_package_name
 
 Accordingly, I manually added the following line to the 'bootstrap'
 script following the tar command, which renames the directory where
 dmake was extracted to, so allowing the script to change to the
 expected directory:
 
 mv dmake-DMAKE_4_12 $dmake_directory_name
 
 The workaround above is perhaps obvious when isolated as above, but I
 am unclear if this means that there is essentially an error in the
 'bootstrap' script which is included or created as part of the
 download of the source code.  Or alternatively perhaps my own
 specific platform (Windows 7 32 bit) is causing this problem.
 
 Anyway, having made the change above, bootstrap appears to have run
 and concluded without an error message.
 
 Kind regards
 
 Jason

Thanks for letting u know about this. We will investigate.
And good for you for your success!


 
 
 From: j_k_marshall_2...@live.com To: dev@openoffice.apache.org 
 Subject: Building query: .bootstrap Date: Sat, 4 Jul 2015 15:52:32
 +
 
 Hi everyone
 
 I am building OpenOffice on a Windows 7 system and have got so far
 as successfully running .configure.  Following this, I execute
 .bootstrap, but I note the following:
 
 * When the missing tarballs and external sources are downloaded,
 the script seems to identify that for some of these, the checksum
 does not match that expected.  Could anyone tell me why this would
 occur and if this is an issue from a security standpoint?  I. e. is
 it possible that what is being downloaded by .bootstrap is unsafe?
 Also, is it okay to simply progress to the build anyway?
 
 * .bootstrap ends with the following:
 
 DMAKE_4_12.tar.gz exists epm-4.2.tar.gz exists making and entering
 C:/cygwin/tmp/aoo-4.1.1/main/solenv/wntmsci12.pro/misc/build/ 
 unpacking
 /tmp/aoo-4.1.1/ext_sources/7abf18f59ca96a3d463386e6d1456138-DMAKE_4_12.tar.gz

 
entering DMAKE_4_12
 ./bootstrap: line 100: cd: DMAKE_4_12: No such file or directory
 
 The message clearly tells me that a directory does not exist, but I
 would assume that this directory would be created automatically.
 Would anybody know what has gone wrong here?
 
 Thank you for your help.
 
 Kind regards
 
 Jason 
 
 

-- 

MzK

We can all sleep easy at night knowing that
 somewhere at any given time,
 the Foo Fighters are out there fighting Foo.
  -- David Letterman

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Building query: .bootstrap

2015-07-05 Thread Regina Henschel

Hi Jason,

I'm building on Windows 7 and I do not have such problems with bootstrap.

Please open your winenv.set.sh and look, whether path-variables are set 
correctly. For example SRC_ROOT, TARFILE_LOCATION, OS, INPATH, SOLARENV, 
ADDITIONAL_REPOSITORIES, DMAKEROOT


Are you building in tmp? That might conflict with other programs, that 
will clean up temp-directories.


Kind regards
Regina


Jason Marshall schrieb:

Hello

With reference to the query below and having examined the 'bootstrap' script, I 
realised that the script was expecting to be able to 'cd' to a directory named 
'DMAKE_4_12', using the comment below:

cd $dmake_directory_name || exit

However, the following command in the 'bootstrap' script resulted in the dmake 
archive being extracted to a directoyr named 'dmake-DMAKE_4_12' resulting in 
the above command failing, as indicated in my original e-mail below.

tar -xzf dmake_full_package_name

Accordingly, I manually added the following line to the 'bootstrap' script 
following the tar command, which renames the directory where dmake was 
extracted to, so allowing the script to change to the expected directory:

mv dmake-DMAKE_4_12 $dmake_directory_name

The workaround above is perhaps obvious when isolated as above, but I am 
unclear if this means that there is essentially an error in the 'bootstrap' 
script which is included or created as part of the download of the source code. 
 Or alternatively perhaps my own specific platform (Windows 7 32 bit) is 
causing this problem.

Anyway, having made the change above, bootstrap appears to have run and 
concluded without an error message.

Kind regards

Jason



From: j_k_marshall_2...@live.com
To: dev@openoffice.apache.org
Subject: Building query: .bootstrap
Date: Sat, 4 Jul 2015 15:52:32 +

Hi everyone

I am building OpenOffice on a Windows 7 system and have got so far as 
successfully running .configure.  Following this, I execute .bootstrap, but I 
note the following:

* When the missing tarballs and external sources are downloaded, the script 
seems to identify that for some of these, the checksum does not match that 
expected.  Could anyone tell me why this would occur and if this is an issue 
from a security standpoint?  I. e. is it possible that what is being downloaded 
by .bootstrap is unsafe?  Also, is it okay to simply progress to the build 
anyway?

* .bootstrap ends with the following:

DMAKE_4_12.tar.gz exists
epm-4.2.tar.gz exists
making and entering 
C:/cygwin/tmp/aoo-4.1.1/main/solenv/wntmsci12.pro/misc/build/
unpacking 
/tmp/aoo-4.1.1/ext_sources/7abf18f59ca96a3d463386e6d1456138-DMAKE_4_12.tar.gz
entering DMAKE_4_12
./bootstrap: line 100: cd: DMAKE_4_12: No such file or directory

The message clearly tells me that a directory does not exist, but I would 
assume that this directory would be created automatically.  Would anybody know 
what has gone wrong here?

Thank you for your help.

Kind regards

Jason







-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Building query: .bootstrap

2015-07-04 Thread Jason Marshall
Hi everyone
 
I am building OpenOffice on a Windows 7 system and have got so far as 
successfully running .configure.  Following this, I execute .bootstrap, but I 
note the following:
 
* When the missing tarballs and external sources are downloaded, the script 
seems to identify that for some of these, the checksum does not match that 
expected.  Could anyone tell me why this would occur and if this is an issue 
from a security standpoint?  I. e. is it possible that what is being downloaded 
by .bootstrap is unsafe?  Also, is it okay to simply progress to the build 
anyway?
 
* .bootstrap ends with the following:
 
DMAKE_4_12.tar.gz exists
epm-4.2.tar.gz exists
making and entering 
C:/cygwin/tmp/aoo-4.1.1/main/solenv/wntmsci12.pro/misc/build/
unpacking 
/tmp/aoo-4.1.1/ext_sources/7abf18f59ca96a3d463386e6d1456138-DMAKE_4_12.tar.gz
entering DMAKE_4_12
./bootstrap: line 100: cd: DMAKE_4_12: No such file or directory
 
The message clearly tells me that a directory does not exist, but I would 
assume that this directory would be created automatically.  Would anybody know 
what has gone wrong here?
 
Thank you for your help.
 
Kind regards
 
Jason
  

Re: Query regarding to open office

2015-04-23 Thread Alexandro Colorado
I am not sure if this guy is talking about our product. Looking at his
domain 'seimens.com' they might be refering to their open-office product.
http://wiki.unify.com/wiki/HiPath_OpenOffice_ME

I know is disgusting. But need to verify he actually means Apache
OpenOffice.

On Thu, Apr 23, 2015 at 3:42 AM, FR web forum ooofo...@free.fr wrote:

 Can we use open-office instead of MS office without any extra cost?
 http://www.openoffice.org/why/why_free.html

 -
 To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
 For additional commands, e-mail: dev-h...@openoffice.apache.org




-- 
Alexandro Colorado
Apache OpenOffice Contributor
882C 4389 3C27 E8DF 41B9  5C4C 1DB7 9D1C 7F4C 2614


Query regarding to open office

2015-04-22 Thread Mehta, Dhaval IN KWA SL
Dear Sir,

We are selling one software (loaded in WINDOWS 7 based workstation) where we 
have to show some reports Excel format.

We will not sell this open office to any client.

Can we use open-office instead of MS office without any extra cost?

With best regards,
Dhaval Mehta

Siemens Ltd.
RC-IN EM SG SOL
Thane Belapur Road
Thane 400601, Indien
Tel.: +91 22 39663580
Mobil: +91 9920574190
mailto:dhaval.me...@siemens.com

Registered Office: 130 Pandurang Budhkar Marg, Worli, Mumbai - 400018; 
Corporate Identity number: L28920MH1957PLC010839; Tel.: +91 (22) 3967 7000; 
Fax: +91 22 3967 7500; Contact / Email: www.siemens.co.in/contact; Website: 
www.siemens.co.in. Sales Offices: Ahmedabad, Bengaluru, Bhopal, Bhubaneswar, 
Chandigarh, Chennai, Coimbatore, Gurgaon, Hyderabad, Jaipur, Jamshedpur, 
Kharghar, Kolkata, Lucknow, Kochi, Mumbai, Nagpur, Navi Mumbai, New Delhi, 
Puducherry, Pune, Vadodara, Visakhapatnam


Query!

2014-12-05 Thread Rehman
Hello ! there were some question in my mind.
1- Can we share the 'Open Office' document with multiple users at a time ? I
want to show specific presentation to many users on their screen
2- can we make plugins for open office or amend anything in open office ?
3-similarly can we add any component of OPEN OFFICE ?

If these things are possible what should I be needed , Java ? and ?
That's all, waiting for your reply thank you.



Re: Query!

2014-12-05 Thread Alexandro Colorado
On Fri, Dec 5, 2014 at 10:04 PM, Rehman rehmank...@gmail.com wrote:

 Hello ! there were some question in my mind.
 1- Can we share the 'Open Office' document with multiple users at a time ?
 I
 want to show specific presentation to many users on their screen

​You would need to have a webserver for that. AOO webcast only generate the
htmls/css. You can upload to a internal webserver and share it with the
network.​



 2- can we make plugins for open office or amend anything in open office ?

​Yes AOO has an API that can be used with JAVA, Javascript, Python, and a
Basic language. Look our wiki for more information about it.​




 3-similarly can we add any component of OPEN OFFICE ?

​Yes AOO has wizards with eclipse to generate compoennts, more info about
this on our DevGuide.​




 If these things are possible what should I be needed , Java ? and ?
 That's all, waiting for your reply thank you.




-- 
Alexandro Colorado
Apache OpenOffice Contributor
882C 4389 3C27 E8DF 41B9  5C4C 1DB7 9D1C 7F4C 2614


Fw: Query!

2014-12-05 Thread Howard Morris (aka Col Boogie)
At school, we use something called Lan Teacher.
It allows me to see any of the student terminals (and take them over if I wish).
It also has a show students teacher's screen to all the student terminals in 
use.
It might be complicated to set that up.


From: Alexandro Colorado 
Sent: Friday, December 05, 2014 10:23 PM
To: dev 
Subject: Re: Query!


On Fri, Dec 5, 2014 at 10:04 PM, Rehman rehmank...@gmail.com wrote:

 Hello ! there were some question in my mind.
 1- Can we share the 'Open Office' document with multiple users at a time ?
 I
 want to show specific presentation to many users on their screen

​You would need to have a webserver for that. AOO webcast only generate the
htmls/css. You can upload to a internal webserver and share it with the
network.​



 2- can we make plugins for open office or amend anything in open office ?

​Yes AOO has an API that can be used with JAVA, Javascript, Python, and a
Basic language. Look our wiki for more information about it.​




 3-similarly can we add any component of OPEN OFFICE ?

​Yes AOO has wizards with eclipse to generate compoennts, more info about
this on our DevGuide.​




 If these things are possible what should I be needed , Java ? and ?
 That's all, waiting for your reply thank you.




-- 
Alexandro Colorado
Apache OpenOffice Contributor
882C 4389 3C27 E8DF 41B9  5C4C 1DB7 9D1C 7F4C 2614


Query

2014-08-04 Thread Silas Campbell
Can OpenOffice be used alongside Microsoft Office???

We have the Home and Business 2014 package, however it doesn't include
Access..which recently I have become in need ofcan you help???

 

Silas



RE: Query

2014-08-04 Thread Dennis E. Hamilton
Yes, they can run side by side.

Are you using Microsoft Office Home and Business 2014 on the Mac?

Are you expecting OpenOffice to provide a counterpart of Microsoft Access?  
That may be tricky.  The database feature of OpenOffice is not a Microsoft 
Access work-alike.  

Please clarify your question.


 -- Dennis E. Hamilton
dennis.hamil...@acm.org+1-206-779-9430
https://keybase.io/orcmid  PGP F96E 89FF D456 628A
X.509 certs used and requested for signed e-mail



-Original Message-
From: Silas Campbell [mailto:silascampbell1...@gmail.com] 
Sent: Monday, August 4, 2014 08:20
To: dev@openoffice.apache.org
Subject: Query

Can OpenOffice be used alongside Microsoft Office???

We have the Home and Business 2014 package, however it doesn't include
Access..which recently I have become in need ofcan you help???

 

Silas



-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Query

2014-07-02 Thread Thuthukani Nxumalo
Hi
i am using open office base and was using Microsoft access before and i
could publish my database after creating it,but in this one i have no
options of how to publish my base to run on my server for everyone in the
office to have access to it when ever and wherever, please assist as soon
as possible

thanks


Re: Query

2014-03-11 Thread Kay Schenk

On 03/02/2014 04:44 AM, Tubular wrote:

Is there a possibility some form of checkbook register (similar to
quicken) that does not require Internet access will be added in the near
future?

Brand Q has been used to project as well as track spending.
I have tried to create a spreadsheet to help project needs yet failed.

Most programs I looked at require Internet connectivity which, like more
and more people, I will not have.

I appreciate any help you can provide.

Thank you
solostincalc




-
No virus found in this message.
Checked by AVG - www.avg.com
Version: 2012.0.2241 / Virus Database: 3705/6636 - Release Date: 02/28/14


You might try looking around on the OpenOffice extensions website --

http://extensions.openoffice.org/en

--
-
MzK

Cats do not have to be shown how to have a good time,
 for they are unfailing ingenious in that respect.
   -- James Mason

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Query

2014-03-02 Thread Tubular
Is there a possibility some form of checkbook register (similar to 
quicken) that does not require Internet access will be added in the near 
future?


Brand Q has been used to project as well as track spending. 


I have tried to create a spreadsheet to help project needs yet failed.

Most programs I looked at require Internet connectivity which, like more 
and more people, I will not have.


I appreciate any help you can provide.

Thank you
solostincalc




-
No virus found in this message.
Checked by AVG - www.avg.com
Version: 2012.0.2241 / Virus Database: 3705/6636 - Release Date: 02/28/14

Open Office ECCN query

2013-12-04 Thread Trebilcock, Richard
Good afternoon,

I am working on a CGI IT UK Limited project called 'Galileo' on which we are 
looking to export software. As part of this process, we need to know whether 
Open Office is of United States origin, and if so what the ECCN number is, and 
does an ENC licence also apply.

I would be most grateful if you are able to provide me with this information. 
However, failing this could you direct me to where I might find the information 
I require?

Your assistance with this matter is most appreciated.

Best regards,

Richard

Richard Trebilcock | ILS Engineer
Defence | CGI
Chaucer House, Springfield Drive, The Office Park, Leatherhead, Surrey, KT22 
7LP UK
T: +44 01372 838258 | M: +44 (0) 7717 355882
richard.trebilc...@cgi.com | cgi-group.co.uk

[cid:image001.jpg@01CE2A2B.EE6E9D30]

CGI IT UK Limited. A CGI Group Inc. Company
Registered Office: 250 Brook Drive, Green Park, Reading RG2 6UA, United 
Kingdom. Registered in England  Wales - Number 947968
CONFIDENTIALITY NOTICE: Proprietary/Confidential Information belonging to CGI 
Group Inc. and its affiliates may be contained in this message. If you are not 
a recipient indicated or intended in this message (or responsible for delivery 
of this message to such person), or you think for any reason that this message 
may have been addressed to you in error, you may not use or copy or deliver 
this message to anyone else. In such case, you should destroy this message and 
are asked to notify the sender by reply e-mail.



4.0.1_release_blocker denied: [Bug 118363] Copy From OOo Base Query Fails To Grab Full Selection

2013-08-21 Thread bugzilla
j...@apache.org has denied Kay ksch...@apache.org's request for
4.0.1_release_blocker:
Bug 118363: Copy From OOo Base Query Fails To Grab Full Selection
https://issues.apache.org/ooo/show_bug.cgi?id=118363


--- Additional Comments from j...@apache.org
I don't believe that this can be fixed in 4.0.1 but if somebody will provide a
patch I will approve it as showstopper

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



4.0.1_release_blocker requested: [Bug 118363] Copy From OOo Base Query Fails To Grab Full Selection

2013-08-15 Thread bugzilla
Kay ksch...@apache.org has asked  for 4.0.1_release_blocker:
Bug 118363: Copy From OOo Base Query Fails To Grab Full Selection
https://issues.apache.org/ooo/show_bug.cgi?id=118363


--- Additional Comments from Kay ksch...@apache.org
Confirmed this some time ago and confirmed. Hoping it can be resolved for 4.0.1

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Introduction Query on getting started with accessibility coding work in Open Office

2013-08-09 Thread Glen Nicci Johnson
Thanks so much for the pointers Rob. I'll get in touch with Steve Yin about
the accessibility stuff.

Yes, I have indeed contributed to Open Source projects before - one of them
being Alfresco, ... I used to work for them a while back.

I look forwarding to getting to know some other folk on the OO dev list
soon.

All the best

Glen

Glen Johnson
Java Software Engineer
LinkedIn: http://uk.linkedin.com/in/glenjohnsonsofteng


On Wednesday, 7 August 2013, Rob Weir wrote:

 On Tue, Aug 6, 2013 at 3:47 PM, Glen  Nicci Johnson
 niccig...@gmail.com javascript:; wrote:
  Hi all,
 
  I had a discussion recently with Steve Lee (of Open Directive), about
  my desire to get involved in software development on the accessibility
  side of notable open source projects. He suggested I maybe have a look
  at the work that's going on in Apache Open Office regarding the
  merging in of the IAccessible2 code from IBM's Lotus Symphony. I've
  been using Open Office very happily for many years, so I thought it
  sounded like a great idea.
 

 Hi Glen,

 I'm not directly involved in this area but I can give you some
 pointers.  Steve Yin, in Beijing, is the programmer working on this.

  - Is there any Java coding involved in this? I'm asking this as Java
  is one of my main coding skills
  - Would any of you perhaps be able to point me in the right direction
  regarding this work?
  - Is there any documentation on the WIKI (or elsewhere) outlining this
  work and giving a background on the tasks that need to be done?
  - Who do I speak to about the work going on in OO regarding
  IAccessible2 and any other accessiblity work?
 

 The information on the wiki is here:
 https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+IAccessible2

 If this is the first time working on an open source project you might
 find some useful background information on the project here:

 http://openoffice.apache.org/orientation/

 To contribute to the development side of the project a first step is
 downloading the code and getting it to build.   Most of the program is
 C++, so you'll need to get a C++ Windows dev environment set up .  Our
 Building Guide is the starting point for that, but expect that you'll
 get stuck and need to ask questions on the list a few times before you
 successfully build.  Consider it a way of meeting more people on the
 project ;-)

 The Building Guide is here:
 http://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO

 Regards,

 -Rob

  Thanks in advance
 
  Since I'm new here, I thought I'd give a brief background on myself
 below:
 
  Having worked as a Software Engineer in many different industries for
  over 15 years, I'm interested in getting involved in accessibility and
  assistive software development - preferably Open Source.
 
  I am passionate about developing accessibility / assistive software
  which empowers disabled people to overcome the barriers imposed by the
  difficulties and impairments they experience. In so doing, I want to
  help them lead fuller lives and have a chance to reach their full
  potential.
 
  I have a good general knowledge covering a number of disabilities -
  specific learning disabilities, and vision impairments e.g. Visual
  Stress / Irlen Syndrome
 
 
  Please let me know how and where I can contribute to the development
  of accessibility in Open Office. Thank you.
 
  Kind regards
 
  Glen Johnson
  Java Software Engineer
  LinkedIn: http://uk.linkedin.com/in/glenjohnsonsofteng
 
  -
  To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.orgjavascript:;
  For additional commands, e-mail: 
  dev-h...@openoffice.apache.orgjavascript:;
 

 -
 To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.orgjavascript:;
 For additional commands, e-mail: dev-h...@openoffice.apache.orgjavascript:;




Introduction Query on getting started with accessibility coding work in Open Office

2013-08-06 Thread Glen Nicci Johnson
Hi all,

I had a discussion recently with Steve Lee (of Open Directive), about
my desire to get involved in software development on the accessibility
side of notable open source projects. He suggested I maybe have a look
at the work that's going on in Apache Open Office regarding the
merging in of the IAccessible2 code from IBM's Lotus Symphony. I've
been using Open Office very happily for many years, so I thought it
sounded like a great idea.

- Is there any Java coding involved in this? I'm asking this as Java
is one of my main coding skills
- Would any of you perhaps be able to point me in the right direction
regarding this work?
- Is there any documentation on the WIKI (or elsewhere) outlining this
work and giving a background on the tasks that need to be done?
- Who do I speak to about the work going on in OO regarding
IAccessible2 and any other accessiblity work?

Thanks in advance

Since I'm new here, I thought I'd give a brief background on myself below:

Having worked as a Software Engineer in many different industries for
over 15 years, I'm interested in getting involved in accessibility and
assistive software development - preferably Open Source.

I am passionate about developing accessibility / assistive software
which empowers disabled people to overcome the barriers imposed by the
difficulties and impairments they experience. In so doing, I want to
help them lead fuller lives and have a chance to reach their full
potential.

I have a good general knowledge covering a number of disabilities -
specific learning disabilities, and vision impairments e.g. Visual
Stress / Irlen Syndrome


Please let me know how and where I can contribute to the development
of accessibility in Open Office. Thank you.

Kind regards

Glen Johnson
Java Software Engineer
LinkedIn: http://uk.linkedin.com/in/glenjohnsonsofteng

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: Introduction Query on getting started with accessibility coding work in Open Office

2013-08-06 Thread Rob Weir
On Tue, Aug 6, 2013 at 3:47 PM, Glen  Nicci Johnson
niccig...@gmail.com wrote:
 Hi all,

 I had a discussion recently with Steve Lee (of Open Directive), about
 my desire to get involved in software development on the accessibility
 side of notable open source projects. He suggested I maybe have a look
 at the work that's going on in Apache Open Office regarding the
 merging in of the IAccessible2 code from IBM's Lotus Symphony. I've
 been using Open Office very happily for many years, so I thought it
 sounded like a great idea.


Hi Glen,

I'm not directly involved in this area but I can give you some
pointers.  Steve Yin, in Beijing, is the programmer working on this.

 - Is there any Java coding involved in this? I'm asking this as Java
 is one of my main coding skills
 - Would any of you perhaps be able to point me in the right direction
 regarding this work?
 - Is there any documentation on the WIKI (or elsewhere) outlining this
 work and giving a background on the tasks that need to be done?
 - Who do I speak to about the work going on in OO regarding
 IAccessible2 and any other accessiblity work?


The information on the wiki is here:
https://cwiki.apache.org/confluence/display/OOOUSERS/AOO+IAccessible2

If this is the first time working on an open source project you might
find some useful background information on the project here:

http://openoffice.apache.org/orientation/

To contribute to the development side of the project a first step is
downloading the code and getting it to build.   Most of the program is
C++, so you'll need to get a C++ Windows dev environment set up .  Our
Building Guide is the starting point for that, but expect that you'll
get stuck and need to ask questions on the list a few times before you
successfully build.  Consider it a way of meeting more people on the
project ;-)

The Building Guide is here:
http://wiki.openoffice.org/wiki/Documentation/Building_Guide_AOO

Regards,

-Rob

 Thanks in advance

 Since I'm new here, I thought I'd give a brief background on myself below:

 Having worked as a Software Engineer in many different industries for
 over 15 years, I'm interested in getting involved in accessibility and
 assistive software development - preferably Open Source.

 I am passionate about developing accessibility / assistive software
 which empowers disabled people to overcome the barriers imposed by the
 difficulties and impairments they experience. In so doing, I want to
 help them lead fuller lives and have a chance to reach their full
 potential.

 I have a good general knowledge covering a number of disabilities -
 specific learning disabilities, and vision impairments e.g. Visual
 Stress / Irlen Syndrome


 Please let me know how and where I can contribute to the development
 of accessibility in Open Office. Thank you.

 Kind regards

 Glen Johnson
 Java Software Engineer
 LinkedIn: http://uk.linkedin.com/in/glenjohnsonsofteng

 -
 To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
 For additional commands, e-mail: dev-h...@openoffice.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



4.0.0_release_blocker granted: [Bug 122589] AOO Base crash when delete table from query design and close the design window

2013-07-02 Thread bugzilla
j...@apache.org has granted fanyuz...@gmail.com's request for
4.0.0_release_blocker:
Bug 122589: AOO Base crash when delete table from query design and close the
design window
https://issues.apache.org/ooo/show_bug.cgi?id=122589


--- Additional Comments from j...@apache.org
set showstopper flag

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



4.0.0_release_blocker requested: [Bug 122589] AOO Base crash when delete table from query design and close the design window

2013-07-02 Thread bugzilla
Armin Le Grand armin.le.gr...@me.com has asked  for 4.0.0_release_blocker:
Bug 122589: AOO Base crash when delete table from query design and close the
design window
https://issues.apache.org/ooo/show_bug.cgi?id=122589


--- Additional Comments from Armin Le Grand armin.le.gr...@me.com
ALG: Okay, done, fixed.

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



4.0.0_release_blocker granted: [Bug 122589] AOO Base crash when delete table from query design and close the design window

2013-07-02 Thread bugzilla
j...@apache.org has granted Armin Le Grand armin.le.gr...@me.com's request for
4.0.0_release_blocker:
Bug 122589: AOO Base crash when delete table from query design and close the
design window
https://issues.apache.org/ooo/show_bug.cgi?id=122589


--- Additional Comments from j...@apache.org
grant flag again, didn't worked the first time, it's fixed already

-
To unsubscribe, e-mail: dev-unsubscr...@openoffice.apache.org
For additional commands, e-mail: dev-h...@openoffice.apache.org



Re: CONFIRMATION REGARDING A QUERY

2013-04-09 Thread Alexandro Colorado
On Tue, Apr 9, 2013 at 10:08 AM, Sabhya Kaushal
sabhya007kaus...@gmail.comwrote:

 dear Mr. Alexandro,

 I could not follow what you wanted to convey. Are the projects that I am
 referring to being already taken up by other people?


I am just asking to the list for more information about the goal of the
project. If it's going to be builted from scratch or is it going to be
transfered. I learn about CMIS during the Fosdem talk about adding
functionality to libreoffice, and now it seems this has been proposed in
AOO.
https://fosdem.org/2013/schedule/event/libreoffice_cmis/



 It would be helpful if you please elaborate.

 Regards,
 Sabhya Kaushal

 --
 sabhya007kaus...@gmail.com




-- 
Alexandro Colorado
Apache OpenOffice Contributor
http://es.openoffice.org


Re: CONFIRMATION REGARDING A QUERY

2013-04-09 Thread Juergen Schmidt
Am Dienstag, 9. April 2013 um 17:19 schrieb Alexandro Colorado:
 On Tue, Apr 9, 2013 at 10:08 AM, Sabhya Kaushal
 sabhya007kaus...@gmail.comwrote:
 
  dear Mr. Alexandro,
  
  I could not follow what you wanted to convey. Are the projects that I am
  referring to being already taken up by other people?
  
 
 
 I am just asking to the list for more information about the goal of the
 project. If it's going to be builted from scratch or is it going to be
 transfered. I learn about CMIS during the Fosdem talk about adding
 functionality to libreoffice, and now it seems this has been proposed in
 AOO.
 https://fosdem.org/2013/schedule/event/libreoffice_cmis/
 
 

This has nothing to do with the LO project and it should be obvious that we 
can't use this code because of the license.

Cedric implemented all http requests from scratch using the curl lib. My idea 
is to use the chemistry lib which can be seen as reference implementation for 
CMIS. 

@Sabyha, please feel free to ask any question here on the list. 

Juergen
 
 
  
  It would be helpful if you please elaborate.
  
  Regards,
  Sabhya Kaushal
  
  --
  sabhya007kaus...@gmail.com
  
 
 
 
 
 -- 
 Alexandro Colorado
 Apache OpenOffice Contributor
 http://es.openoffice.org