Re: Problems Open Office 4.1.1.3

2023-11-07 Thread David Robley

On 2023-11-08 17:56, Ralf wrote:

Hello,
I have been using Open Office for years without any problems. 
Recently, however, there have been constant problems. Could this be 
due to my Mozilla Firefox browser?

Extremely unlikely.
The problem is that I can't open the files on my laptop. When I reload 
the browser, it works again.


"Can't open" is a vague description. How are you trying to "open" files 
- double click, File | Open withing OpenOffice, dragging file(s) onto 
OpenOffice? What results when you try to open a file; is there an error 
message, nothing happens, something else?


What is your operating system?


Best regards
Ralf Möller


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


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



Re: A problem

2023-11-06 Thread David Robley

On 2023-11-07 05:56, Ian Kirby wrote:

From time to time I try to access an Open Office document and access is
denied. But I am the originator of the document.  I reload the document
from my back-up drive and it then allows access.  How can I avoid access
denied in the first instance?  I am using Windows 10 fully updated on a
Dell desktop computer.

I have found it very difficult to find the correct place to raise 
problems with Apache.


Keep up your good work.

Ian.

Your best source of help would be via the Apache OpenOffice forum. Go to 
https://forum.openoffice.org/en/forum/index.php and register an account, 
then create a new topic in the Beginner forum explaining your issue. 
Don't use the "contact us" link.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.



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



Re: Formula construction help

2023-11-04 Thread David Robley

Responses in line:

On 2023-11-05 11:58, Donald Town wrote:
  
First, thanks to ALL of you for your responses & courtesy.


Second, I don't know how to tell / determine what kind of document it is... between 
database or ... "Calc'... whatever distinguishes.
At the top left of the window in which you are working should appear the 
filename followed by the application that has opened the file - Calc for 
spreadsheet or Base for database.

Third, from the Get Info box... on one ( Macbook ) computer, I'm using ...
Version: OpenOffice 4.1.8 AOO418m3 (Build:9803)

...and on a different computer ( a more often used iMac)
Version: 3.1.1 (Build: 9420)

The formula I should have used works logically elsewhere outside OO, but not in 
the OO document.
When asking originally, I errored using the above as a two part formula... that 
actually contained a problem in the first place.
Apologies for the mistaken way I described my predicament originally.
Mathematically I could / should have written it as...

If K102 < 14 then L102 = "Yes", else L102 = "No"
I'll continue to assume Calc until proven otherwise. Note that a 
spreadsheet formula can only affect the cell in which it is contained. 
If you want to display the "Yes" or "No" in L102 then the formula must 
be in L102 and would be:

=IF(K102 < 14; "Yes"; "No")


... but I most certainly still do not understand how to make that work right in 
my document.
I can set up a simplified version if that helps everything... and if it's ok to 
send it to the list.
The list strips attachments, so that wouldn't be possible. Alternatively 
you could register and post on 
https://forum.openoffice.org/en/forum/index.php


So, that's where things are...and most certainly I do appreciate the input / 
feedback / help.
Thanks again for everyone's input and courtesy.

Don
  On Saturday, November 4, 2023 at 08:00:25 PM EDT, 許哲崇  
wrote:
  
  We may have common interest.

So, please keep me informed.
I am learning LaTex and equations in word. You may want to review my
Facebook 許哲崇 (Fideric Hsu)

Donald Town  於 2023年11月2日 週四 下午3:55 寫道:


Hi everyone


I'm working on a database that has a group of basic formulas to get needed 
values.

I'd like to configure a "Yes / No' location (set of adjacent cells)
to identify if a value is greater than / less than a boundary.
If > 14 then report "No".
If < or = 10 then report "Yes".

My only issue is not knowing how to construct the formula correctly.
Any help appreciated.

Thanks
Don

Using a couple different versions of OO on 3 different older Macs.


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


   




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



Re: Formula construction help

2023-11-02 Thread David Robley

Unfortunately IIF isn't implemented in AOO Calc.

On 2023-11-02 22:06, Robin Lord wrote:

The IIF function will do what you want easily

On Thu, 2 Nov 2023, at 09:57, David Robley wrote:

On 2023-11-02 18:25, Donald Town wrote:

Hi everyone

I'm working on a database that has a group of basic formulas to get needed 
values.

I'd like to configure a "Yes / No' location (set of adjacent cells) to identify 
if a value is greater than / less than a boundary.
If > 14 then report "No".
If < or = 10 then report "Yes".

My only issue is not knowing how to construct the formula correctly.
Any help appreciated.

Thanks
Don

Using a couple different versions of OO on 3 different older Macs.


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


You haven't said which component of AOO you are working with. You
mention database but then mention adjacent cells, which would suggest Calc.

Assuming the latter, a formula like the following should achieve what
you seem to want. You haven't mentions what to display if value is
between 10 and 14 so I've used UNDEFINED; replace with whatever you
want. Assuming your "value" is in A1, place in B1

=IF( A1 > 14; "NO"; IF( A1 <= 10; "YES" ; "UNDEFINED"))


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




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



Re: Formula construction help

2023-11-02 Thread David Robley

On 2023-11-02 18:25, Donald Town wrote:

Hi everyone

I'm working on a database that has a group of basic formulas to get needed 
values.

I'd like to configure a "Yes / No' location (set of adjacent cells) to identify 
if a value is greater than / less than a boundary.
If > 14 then report "No".
If < or = 10 then report "Yes".

My only issue is not knowing how to construct the formula correctly.
Any help appreciated.

Thanks
Don

Using a couple different versions of OO on 3 different older Macs.


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

You haven't said which component of AOO you are working with. You 
mention database but then mention adjacent cells, which would suggest Calc.


Assuming the latter, a formula like the following should achieve what 
you seem to want. You haven't mentions what to display if value is 
between 10 and 14 so I've used UNDEFINED; replace with whatever you 
want. Assuming your "value" is in A1, place in B1


=IF( A1 > 14; "NO"; IF( A1 <= 10; "YES" ; "UNDEFINED"))


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



Re: Former user, trying to recover important document

2023-10-18 Thread David Robley

On 2023-10-18 22:49, Yas wrote:

Good morning,

I used OpenOffice back in 2016-2021 for writing stories. I am trying to see
if there is a possibility of me being able to recover a document that I
worked on quite often in OpenOffice if I no longer have the laptop that I
was typing it on. I moved away and some of my things got lost, so I don't
believe I will be able to recover that computer.

I'm not certain if OpenOffice has a cloud like Google Drive or OneDrive,
but it would help me out a lot if I could recover that document. I can
provide email addresses that I used while working with the product, if that
may be of assistance.

Thank you.

Unless you copied the document(s) to another medium, such as USB drive 
or had storage on a third party cloud service, your documents are gone. 
Apache OpenOffice does not have its own remote storage service.



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



Re: Copying cells locks up spreadsheet

2023-09-18 Thread David Robley
Using Windows 11 ? Windows 11 has a new Clipboard Manager - go to Start 
> Settings, Click Clipboard on the System tab and turn off Suggested 
Actions; if that doesn't help, try turning off Clipboard History.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 18/09/2023 09:56, Jim Wilde wrote:

I’ve tried removing the software and re-loading it, and nothing seems to work. 
Every time I copy cells, the spreadsheet locks up and closes the program. Any 
ideas?

Jim
Arizona, USA

Sent from my iPhone

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



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



Re: bug report

2023-09-13 Thread David Robley
This is not a bug; apparently you didn't read Java and OpenOffice 
https://www.openoffice.org/download/common/java.html linked on the 
download page. OpenOffice for Windows is only available as a 32 bit 
version. Thus you need a 32 bit Java to match. See 
https://forum.openoffice.org/en/forum/viewtopic.php?f=74=69896 for 
more on AOO and Java.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 14/09/2023 01:04, John Button wrote:

I just had to uninstall OpenOffice 64-bit v 4.1.14 from my Windows 10
pro laptop because it would not recognize the installed
jre-8u381-windows-x64  Java runtime environment that LibreOffice
automatically found & used for an .ods database I'm working on.

I found the location of the Java runtime environment used by
LibreOffice & browsed to it with OpenOffice's Java Preferences, but
OpenOffice said it wasn't there.

Thought you should know. I didn't want to sign up for a bugzilla
account just to let you know

John (::) <--yeah that's an ASCII Button

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



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



Re: Program suggestion

2023-09-10 Thread David Robley

On 10/09/2023 15:06, Surfy wrote:

Thank you for the great service you have been providing the public for o many 
years.
I have a suggestion for OpenOffice Writer to add to the "Find/Search" function 
- could you please show the total number of times a search word or
Reporting bugs or suggestions -> 
https://forum.openoffice.org/en/forum/viewtopic.php?f=74=13490

  phrase appears in a document. Also it would be handy if once you search for a 
word that it is stored in a drop down for certain time to select from in the 
future.
Thank you again
Surfsailor


There is currently a drop down of recent searches in the Find & Replace 
dialog and I also see it in the Find tool on the Find toolbar. The 
former seems to retain searches for the current OpenOffice session, 
where the latter seems restricted to the document in which the search 
was done.Using OpenOffice 4.1.14 on Linux.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.



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



Re: Question on Apache OpenOffice

2023-08-21 Thread David Robley

Yes to both. As per answers to this question in another mailing list:

"Both programs should install side by side because they use different 
default install locations.


However, the LibreOffice shell extensions could be overwritten by Apache 
OpenOffice, so I would suggest to do a "Custom Install" and deselect the 
"Windows Explorer Extension" found under "Optional Components". " - 
Matthias Seidel


"The short answer is yes. You can install OpenOffice now. Both will 
work. However there will be a "fight" to be associated with normal 
office file types (such as Open Document, Word, Excel, etc) This means 
that when you open a Word file with one Office (be it OpenOffice, 
LibreOffice or MS Office) it will become associated with this suite and 
to open with another one you will have to deliberately use the "Open 
with" option. If this acceptable then you can use multiple Office 
suites. If this is confusing then it is better to uninstall the one(s) 
you don't use so much." - Pedro Lino


On 22/08/2023 03:37, J Leslie Turriff wrote:

On 2023-08-21 09:25:26 Turritopsis Dohrnii Teo En Ming wrote:

Thanks.

On Mon, 21 Aug 2023 at 22:21, David Belina  wrote:

Yes


Yes, there will be conflicts? or Yes, LibreOffice and Apache OpenOffice 
will
be able to live side by side?

Leslie


On August 21, 2023 at 8:02:52 AM, Turritopsis Dohrnii Teo En Ming
(tdtemc...@gmail.com) wrote:

Subject: Question on Apache OpenOffice

Good day from Singapore,

I already have LibreOffice installed on my Windows 10 Aftershock
gaming laptop. Can I still install Apache OpenOffice?

Will there be any conflicts? Will LibreOffice and Apache OpenOffice be
able to live side by side?

Thank you.

Regards,

Mr. Turritopsis Dohrnii Teo En Ming
Targeted Individual in Singapore
Blogs:
https://tdtemcerts.blogspot.com
https://tdtemcerts.wordpress.com
GIMP also stands for Government-Induced Medical Problems.

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

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


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



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



Re: INFO PROBLEM WITH SAVING

2023-08-19 Thread David Robley

"impossible to save this way. choose another"

Is that the exact error message?

To where are you trying to save your documents?

What happens if you try to save to your desktop?

On 19/08/2023 20:28, Alice Isnardi wrote:

Hello, thanks for all your infos!
now i have details: it’s OpenOffice 4.1.11, Windows 10, Laptop Hp240GB. I
cannot save all kind of texts, even with just one word, in any format that
is not PDF: i tried with ODF (.odt), Test document Openoffice.org XML 1.0
(.sxw), (.txt), Microsoft word 95 or 60 (.doc), Rich text format (.rtf),
(.xml)
but nothing: it doesn’t save, there is a notification that says “impossible
to save this way. choose another”
Did someone ever meet this?
Thanks a lot in advance
Regards
AI

Il giorno ven 18 ago 2023 alle 23:11 Alice Isnardi <
aliceisnardi...@gmail.com> ha scritto:


Hello, sorry; i was just added to the mailing list, I need to solve a
problem about saving files in Openoffice: can i ask here for help?
thanks
Alice



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



Re: INFO PROBLEM WITH SAVING

2023-08-19 Thread David Robley
Just ask your question. Make sure you include information about your 
OpenOffice and operating system version, and the format in which you 
save your documents.


On 19/08/2023 06:41, Alice Isnardi wrote:

Hello, sorry; i was just added to the mailing list, I need to solve a
problem about saving files in Openoffice: can i ask here for help?
thanks
Alice



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



Re: How to Make a Background Fit?

2023-08-19 Thread David Robley
You have possibly made changes and set them in your default template. 
See https://forum.openoffice.org/en/forum/viewtopic.php?t=1161 for how 
to create or modify this.


On 19/08/2023 16:12, Linda Hull wrote:

David,

There are things which I don't understand about Open Office. Since I
started playing with the backgrounds I've lost the regular one inch margins
on any new pages I open. How do I get them back?  I don't think I can send
examples to the forum, but if anyone wants to see?

Linda

On Fri, Aug 18, 2023 at 8:05 PM David Robley  wrote:


See if https://forum.openoffice.org/en/forum/viewtopic.php?t=108078 is
helpful.

On 19/08/2023 05:49, Linda Hull wrote:

   Dear Wonderful Open Office People,

I want to send a letter, either paper or electronically, with an
appropriate background image. I have Windows 10 and Open Office 4.1.13.

I found an image, cropped it, opening it in Open Office, I get one image

in

the middle of the page and even though I specified Writer, it's in Draw,

OR

I get 3 or 4 images in one, in Writer.

I only want one page. If it goes to page 2, then another one maybe. Or
possibly just the background without the frame and flowers.

I'm following the directions here:


https://smallbusiness.chron.com/add-background-image-openoffice-document-63567.html

How to Add a Background Image to an OpenOffice Document
by Jacob Michael

Jacob says to write the letter first. I decided to see if I could get the
background first, because the flowers might make it difficult to read the
text. Does having text on the page make a difference? - Answer The text
flows across all 3 background images.

* I can't see how to make the margins control the text in OO 4.1.13?

[Solved] Multiple pages on screen - From 2016
https://forum.openoffice.org/en/forum/viewtopic.php?t=86060
I don't see what they are talking about at the bottom.

I should note that I tried reducing the size of the image once, but the
preview looked the same.

I now changed it from .png to .jpg - it opens in Draw not Word.

Years ago I experimented with plain colored backgrounds and that worked
fine. How do I get the background image to fit the page and see ONE page

to

work on, in Writer 4.1.13?



Linda



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



Re: Login problem

2023-08-09 Thread David Robley
Andropen Office, as its name suggests, is for Android only. There is an 
iOS application AO Office 
https://apps.apple.com/us/app/ao-office/id1177936371 by the same person 
who ported AndrOpen Office.  The iOS version  is free but apparently has 
"in-app purchases" whatever that involves. Neither of these are official 
Apache products and are not supported by Apache.


The is also Collabora Office, a free offshoot of LibreOffice at 
https://apps.apple.com/us/app/collabora-office/id1440482071.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 08/08/2023 23:31, ray mcgough wrote:

Hi

I have purchased Andropen office with my gmail account which I use with my 
android mobile and android tablet, I would also like to use AO office on my 
iPad, but unfortunately my iPad is in a different email account, is there a way 
I can access the app with my gmail account via iPad rather than pay another 
£12.99?

Regards
Ray.

Sent from my iPad
-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



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



Re: Is it possible to export an Apache Open Office doc into an EPUB doc?

2023-07-31 Thread David Robley
If you are using Windows, this may be an issue with whatever antivirus 
you are using. The precise text of the error message, and information 
about what operating system and antivirus you are using may help 
diagnose the problem.


To what "website" are you referring when you mention account 
information? Last I looked there are an awful lot of websites.


 On 31/07/2023 20:48, Tom Griffith wrote:

J. Leslie,

I have been trying to reach someone to help me with this:

I recently installed the latest version of Open Office.  Now I am unable to 
open a number of my documents, some of them open office and some Windows 97 
documents.  Instead, I get a “access denied” notice.  Can you help me?  Also, I 
looked at the website and found several references to account information—ID 
and password—but I can’t find out how to create an account.  Thank you.  Tom 
Griffith

From: J Leslie Turriff
Sent: Monday, July 31, 2023 2:09 AM
To: users@openoffice.apache.org
Subject: Re: Is it possible to export an Apache Open Office doc into an EPUB 
doc?

On 2023-07-30 21:59:04 The Telepath wrote:

Hello,

I am wondering if it is possible to export an Apache Open Office doc into
an EPUB document? If so, how can I do that? I do not see it as an option
anywhere.

Also, is it possible to change the width and height of the page as we
export the document to a PDF file? Wondering if I can change the document
to a 5.5 in. by 8.5 in.

Thanks,
Jada

You can use the Page tab in the Format => Page... menu item to change 
the
size of the pages to 5.5" x 8.5" before exporting the document.

Leslie
--
Platform: Linux
Distribution: openSUSE Leap 15.4 (x86_64)

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






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



Re: Damaged file

2023-06-30 Thread David Robley
Your file is almost certainly has no useful data in it. See 
https://forum.openoffice.org/en/forum/viewtopic.php?f=74=84056 for 
some methods to try and recover temporary files.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 01/07/2023 00:42, Dealtab Andrzej Batko wrote:


Hello,

I desperately need to recover data from a damaged file. Can You help me ?

Best Regards

Andrzej Batko
tel.: +48793788033

del...@op.pl


Re: OpenOffice.org - Windows 11 Compatibility

2023-06-30 Thread David Robley
That version was released in 2011 and  I don't think anyone would 
recommend it for use with Windows 11.


I'd suggest you upgrade to the current version from 
https://www.openoffice.org/download/


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 30/06/2023 17:51, Benny, Olivia wrote:

Hello Support,

Greetings!

Few of our computers are having OpenOffice.org software with the below 
mentioned versions :

Software Title
Software Version
OpenOffice.org 3.4
3.4.9590

Can you please let us know whether the version of OpenOffice.org listed above 
is compatible with Windows 11, if not please provide the version which is 
compatible.

Please let us know if you have any further queries.

Regards,
Olivia Benny




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



Re: Change my email address on this account

2023-06-18 Thread David Robley
If by "Apache Open Office 4 site" you mean the Apache OpenOffice forum 
https://forum.openoffice.org/en/forum/index.php then log in at that 
page, and click on your user name at the top right of the page. Select 
User Control Panel from the list to open the User Control Panel. Click 
the Profile tab and choose the option Edit Account Settings.


Enter you new email and at the bottom of the page, your current password 
and click Submit.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 18/06/2023 20:16, Linda Marker wrote:

My email has changed. I wish to change it on the Apache Open Office 4 site. How 
do I do this?


Linda Marker
linda.mar...@icloud.com
I will sing to the Lord, because He has
dealt bountifully with me. (Psalm 13:6)




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



Re: Change my email address

2023-06-17 Thread David Robley
To which "OpenOffice account" do you refer? This mailing list, the 
OpenOffice forum, Reddit sub, something else? All will have different 
methods.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 18/06/2023 05:55, Linda Marker wrote:

I want to change my OpenOffice account mailing address. Please let me know how 
to do this. Thank you.



Linda Marker
linda.mar...@icloud.com
I will sing to the Lord, because He has
dealt bountifully with me. (Psalm 13:6)




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



Re: Open Office

2023-04-21 Thread David Robley
The only forum discussion from this email is 
https://forum.openoffice.org/en/forum/viewtopic.php?t=109412


On 21/04/2023 23:57, Jonah Jones wrote:

I started trying to edit my database and failed, so went on the forum and 
couldn’t understand any of the answers.  I came out of Open Office and now I 
can’t open Open Office at all.  I’m worried that I’ve lost all that data.
Jonah Jones
Sent from Mail for Windows




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



Re: Help with downloading update

2023-03-29 Thread David Robley
You don't need a password to download the most recent version of Apache 
OpenOffice; simply go to https://openoffice.org/download/ where the 
appropriate download selection should be made for you. Click Download 
full installation and you will go to the Sourceforge download page for 
OpenOffice. Don't click anything there - your download should start 
within a few seconds.


Please take time to read the Installation Instructions which you can get 
to from the link above.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 29/03/2023 09:15, Craig Hulsebos wrote:

  Dear Friends,

During Covid my old computer with XP gave up and a friend who lived nearby
set up a computer for me with Windows 10.  He at that time installed
OpenOffice.  I've used it for all this time.  I'm 80, and legally blind.
Recently when using Open Office I get the message that I can download an
update. I would love to do so but I was never told or given info or a
password.   The man who put the computer together has moved away and I no
longer have contact info with him; thus no way to see if he has the
password anymore.  So ...  Where do I go from here? How do get an update?
   I would appreciate any and all help.

Thank you,

*Craig*


8^)
  \

W. Craig Hulsebos
wcrai...@aol.com
craighulse...@gmail.com



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



Re: Copy Function Causes Error

2023-03-25 Thread David Robley
Windows 11 has a new Clipboard Manager which has been reported to 
interfere with AOO copy / paste; go to Start > Settings, Click Clipboard 
on the System tab and turn off [b]Suggested Actions[/b]; if that doesn't 
help, try turning off [b]Clipboard History[/b]


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 26/03/2023 06:21, Keith and Vicki Pfister wrote:
When I use the copy function in OpenOffice Calc, it freezes and shuts 
down every time. I have used OpenOffice Calc for years with no issue. 
Since using it on my new laptop with Windows 11, I am experiencing the 
problem. I cannot locate where to update my user profile which was 
suggested in some of the user forums.


V Pfister



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



Re: Calc: Complex searches

2023-03-23 Thread David Robley
There is some discussion at 
https://forum.openoffice.org/en/forum/viewtopic.php?t=46565 which you 
might find useful.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 24/03/2023 06:29, helices wrote:

Over the last few years, I have an OpenOffice Calc spreadsheet that has
grown to:
   500 rows X 100 columns

Simple searches are too limited:

   Find rows where field D = someText


Need to do more complex "queries" like:

   Show all rows
   Where field A is blank
 and field D = someText
 and field H > 95
  or field K > 95
  or field P > 95

A. How can such searches be done within Calc?

B. How can I convert this spreadsheet into a database table, accesssible to
SQL-like queries, like the above example?

What else ought I consider?

Please, advise. Thank you.

~ Mike



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



Re: Are... [Test] 3/16

2023-03-17 Thread David Robley
This mailing list - not forum - does not support attachments. You may 
prefer to use the actual forum https://forum.openoffice.org/ which doees 
support attachments, but limited to 128 Kb


On 17/03/2023 10:17, Nickalus T. Holt wrote:

  Open Office Forum Users,
Are attachments allowed in this forum?
Please advise...
Nickalus T. Holt


- Forwarded Message - From: Nickalus T. Holt To: Users 
Sent: Thursday, March 16, 2023 at 07:41:47 PM 
EDTSubject: Test...
  3/16/2023


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



Re: Label Template

2023-03-13 Thread David Robley
Do you mean File | New | Labels from whence you can select the label 
format you want?


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 12/03/2023 09:25, Alan Pearce wrote:

Can anyone point me in the right direction please.I need to find the template 
for  labels. I used  it  many times years ago  but  can''t find it now.  
Regards,Alan.


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



Re: copy - paste problem

2023-03-10 Thread David Robley

https://duckduckgo.com/?q=windows+11+clipboard+suggestions

On 11/03/2023 10:01, gil clampett wrote:

I am trying to figure out how to do that. Do I need internet access? I don't 
have that at home.



Sent from my Galaxy



 Original message 
From: David Robley 
Date: 3/10/23 3:04 PM (GMT-08:00)
To: users@openoffice.apache.org
Subject: Re: copy - paste problem

Try turning off off the Clipboard Manager *Suggested Actions*

On 11/03/2023 09:15, gil clampett wrote:

The program was restarted. Same thing.
The computer was restarted.
Same thing




Sent from my Galaxy



 Original message 
From: Rory O'Farrell
Date: 3/10/23 12:19 PM (GMT-08:00)
To:users@openoffice.apache.org
Cc: gil clampett, Matthias 
Seidel
Subject: Re: copy - paste problem

On Fri, 10 Mar 2023 20:14:30 +
gil clampett  wrote:


Clipboard history was disabled.
Same problem


After disabling Clipboard History, was the program restarted - that restart 
might be necessary for the change to take.

--
Rory O'Farrell



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



Re: copy - paste problem

2023-03-10 Thread David Robley

Try turning off off the Clipboard Manager *Suggested Actions*

On 11/03/2023 09:15, gil clampett wrote:

The program was restarted. Same thing.
The computer was restarted.
Same thing




Sent from my Galaxy



 Original message 
From: Rory O'Farrell
Date: 3/10/23 12:19 PM (GMT-08:00)
To:users@openoffice.apache.org
Cc: gil clampett, Matthias 
Seidel
Subject: Re: copy - paste problem

On Fri, 10 Mar 2023 20:14:30 +
gil clampett  wrote:


Clipboard history was disabled.
Same problem


After disabling Clipboard History, was the program restarted - that restart 
might be necessary for the change to take.

--
Rory O'Farrell


Re: new version of OO?

2023-02-26 Thread David Robley

Expect it within 24 hours.

On 27/02/2023 09:35, PCS wrote:

When will the new version of OO be released?

PCS


On 26 Feb 2023, at 9:49 pm, Matthias Seidel  wrote:
  I will have a deeper look later after we released the new version of 
OpenOffice.

Regards,

Matthias





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



Re: excel

2023-02-13 Thread David Robley
"We" on this list are merely users of Apache OpenOffice. AOO does have a 
spreadsheet component named Calc. You can find more information at 
https://www.openoffice.org/ which might answer your potential questions.


As you are not subscribed to this mailing list, you may not see all 
answers to your mail. As a courtesy I have sent a copy of my reply to 
you; please Do Not respond to me, but to the mailing list. to you


On 14/02/2023 13:19, Richard Rik wrote:

Do you offer a free excel with apache?  If so have a question or two.
thank you


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



Re: Writer horizontal scroll bar color

2023-01-31 Thread David Robley
Scroll bar appearance is usually controlled by the window manager, or 
Windows for MS users.


On 31/01/2023 19:53, David White wrote:

Hi there

I have a friend who has macula degeneration.  He uses OpenOffice Writer and
finds it difficult to pick up the horizontal scroll bar where the
surroundings are much the same buff colour as the bar.  He has 2 large
monitors, one showing normal magnification and the other at 700%.

He has made a document as his diary which comprises many pages in
horizontal format.  Hence the need to go backwards and forwards to the
various pages using the bar.

I have searched the Internet for some way to change the bar colour to say
red or something striking to make it easy for him.  I have had no luck.

Is there a simple way to change the bar's color?

Thanking you in anticipation

Thanks and Cheers

David White

Brisbane, Queensland, Australia.

(OpenOffice registration...slackd...@gmail.com)



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



Re: Fwd: Downloading OpenOffice

2023-01-06 Thread David Robley
32 bit applications will run on 64 bit systems. To date, there is only a 
32 bit version of AOO available for Windows so choose that option. Note 
that if you use parts of AOO that need Java you will need to download 
and install a 32 bit version of Java. For more information see 
https://forum.openoffice.org/en/forum/viewtopic.php?t=69896


I've sent a copy of this message to you as a courtesy as you are not 
subscribed to the users mailing list and thus may not see replies to 
your message. Please do not respond to me directly - use the mailing list.


On 06/01/2023 18:29, Michael Myers wrote:

-- Forwarded message -
From: Michael Myers 
Date: Thu, 5 Jan 2023 at 09:58
Subject: Downloading OpenOffice
To: 


Good morning.
I want to download Openoffice onto my new HP laptop, but when I go to the
official Apache site I only have the option of selecting 32bit operating
system. My PC is 64bit. Does this create a problem or should I just select
32bit? (64bit seems only applicable to Linux)
Thanks,  Mike Myers



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



Re: Downloading

2023-01-04 Thread David Robley
It seems you have tried to get Apache OpenOffice from an unscrupulous 
location.


You should go to the official download site 
https://openoffice.org/download/ where you can get Apache OpenOffice 
safely and free. Make sure you read the installation instructions that 
are linked from that page.


I've sent a copy of this message to you as a courtesy as you are not 
subscribed to the users mailing list and thus may not see replies to 
your message. Please do not respond to me directly - use the mailing list.


You can also use the Apache OpenOffice forum to get advice on Apache 
OpenOffice - https://forum.openoffice.org/en/forum/index.php


On 05/01/2023 10:14, Vivian King wrote:

Gentlemen/Ladies,
  I downloaded OpenOffice and began filling out the required forms in which my 
credit card number was requested.  Within a few minutes of supplying that 
number  I was confronted with some “Lazy Games” site immediately followed by a 
message from Capital One asking if I had just placed an order for $45.  I had 
not; consequently they held up the payment, suspended my card while they search 
out the fraud.  Unfortunately, that meant that you were unable to accept my 
card which means that until I receive a replacement I cannot join OpenOffice!  
I will try again when the new card is received.
Unhappily,
Vivian King
-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



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



Re: Question

2023-01-02 Thread David Robley
Web search is your friend. 
https://duckduckgo.com/?q=free+software+virus+protection+for+Windows+8.1=web


On 03/01/2023 12:23, Geeny In A Bottle Komanac wrote:

free software virus protection for Windows 8.1


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



Re: How to turn on automatic insertion of a period at the end of a sentence with double-space?

2022-12-17 Thread David Robley

A similar question was asked recently at https://ask.libreoffice.org/t/85262

Alternatively you could try using Autocorrect (Tools | Autocorrect 
|Replace) to replace two spaces with whatever you need.


On 18/12/2022 03:02, Timothy Moffitt wrote:

Thx!

Regards,

Timothy E. Moffitt, Esq.
Defending the People of Southwest Florida Since 2002
501 Goodlette-Frank Rd.
Suite D-100
Naples, FL  34102
Ph: (239) 298-6538
naplescriminaldefe...@gmail.com

www.TimothyMoffitt.com







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



Re: Pleas help me 'set up Open Office' on my MacBook Pro

2022-12-09 Thread David Robley
In addition to other advice, please read the installation instructions 
linked from https://openoffice.org/download/


As a courtesy I have sent you a copy of this mail as you are not 
subscribed to the mailing list and may not see all replies to your 
message; please do not reply to me but to the mailing list.


On 10/12/2022 03:52, acharya...@gmail.com wrote:

Dear Apache team, Pleas help me 'set up Open Office' on my MacBook Pro

Regards,
Dr AK


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



Re: Take a cell value from a spreadsheet into another

2022-11-16 Thread David Robley

For context see https://forum.openoffice.org/en/forum/viewtopic.php?t=108886

On 16/11/2022 19:53, Richard Gill wrote:

Dear Sir

I am struggling to find a way to display the results of a formula when
editing into a different document. It picks up the formatting, but not the
results.

Can you help please?

Richard Gill



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



Re: Open office updated

2022-10-25 Thread David Robley
Go to https:/www./openoffice.org/download/index.html and download the 
appropriate package for your operating system. Install it according to 
the instructions for your operating system at 
https:/www./openoffice.org/download/common/instructions.html. Done.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 25/10/22 09:46, jos tee wrote:

How do I update my open office version. I a JRE to allow macros to run. My 
current version is 4.1.3.

Sent from Yahoo Mail on Android



Cheers
--
David Robley

MIPS: Meaningless Indicator of Processor Speed.
 



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



Re: #VALUE! Error

2022-08-28 Thread David Robley
I think you have LibreOffice, as Apache OpenOffice is only at version 
4.1.13. There may be differences between the two programs that could in 
some cases make a difference to the answers to questions; please make 
sure you are clear about what software you are using.


On 29/8/22 00:19, Vince@Verizon wrote:

I have a vers: 7.3.2.2 Calc sheet on my Win10x64 Home



Cheers
--
David Robley

Artist seeks Boss with vision impairment.
 



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



Re: corrupted file

2022-08-18 Thread David Robley
Do you have backup enabled? If so, see if the backup copy(s) are 
recoverable. If not (why, if the document has so much time invested) see 
the methods in 
https://forum.openoffice.org/en/forum/viewtopic.php?f=71=85038 for 
detailed instructions on how to


a) use Previous Versions (W7 and later) to recover previous versions of 
the file.


b) recover your file as it was when you last opened or saved it, or as 
it was when it was last saved with AutoRecovery;


c) find previous versions of the file in the folder it is located in, 
but which have since been deleted;


d) un-delete the temporary files AOO wrote while you were editing the 
file, and then deleted.  This may recover your file as it was when you 
last opened or you last saved it.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 18/8/22 19:50, Ben Steele wrote:

Hi,  I’ve just had a document i’ve put an obscene amount of work into suddenly 
not load properly.  One minute it was fine.  Came back and it was all  
#

Is there any way to reverse this.  I’ve tried all sorts of suggestions but none 
helped

I’d appreciate if you knew of a program or some magic.

TIA

Ben

Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows




Cheers
--
David Robley

Artist seeks Boss with vision impairment.
 



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



Re: Search for English Dictionary

2022-08-13 Thread David Robley
You don't mention what type of English spelling you need - e.g. British, 
US, etc so I'll suggest the most common dictionary, or spell checker, 
extension for US, GB, AU, CA and ZA which you can download from 
https://extensions.openoffice.org/en/project/english-dictionaries-apache-openoffice


Some links to grammar tools are at 
https://www.openoffice.org/lingucomponent/grammar.html


Once you have downloaded the extension(s) you want, use Tools | 
Extension Manager to install them.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 13/8/22 18:41, Michel Mery wrote:

Hello : I dowloaded Openoffice from France and I'd also need an English Grammar 
and Spell-checker because I write in both languages. How can I get this 
extension into my system ??? Can you simply explain step by step ? Thank you. - 
Michel Méry, France



Cheers
--
David Robley

Artist seeks Boss with vision impairment.
 



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



Re: wavy red lines

2022-07-30 Thread David Robley

https://forum.openoffice.org/en/forum/viewtopic.php?t=89050

On 31/7/22 07:53, Alan Cliffe wrote:

Suddenly, all the  words in my Writer documents have wavy red lines underneath 
as if they were misspelled. Please advise.



Cheers
--
David Robley

Artist seeks Boss with vision impairment.
 



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



Re: Open Office 4

2022-07-20 Thread David Robley
See Spell Check Not Working (words red underlined) 
https://forum.openoffice.org/en/forum/viewtopic.php?f=74==89052


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 20/7/22 20:20, O'Brien Craig Mark wrote:

Good day.

Hope you can help with my problem, issue?

For no apparent reason Office 4 is requesting me to do a spell check on ALL 
documents I open.

Every word is checked. This has never happened before.

I did a repair and it has not helped.

Hoping for a favorable response.



Cheers
--
David Robley

Artist seeks Boss with vision impairment.
 



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



Re: Cannot load Open Office in my iMac with Cantinna loaded. It says programer has not verified the program. Do you have version

2022-07-20 Thread David Robley
Please see the Mac section of Instructions for Downloading and 
Installing Apache OpenOffice 4.0, 4.1 Versions - 
https://www.openoffice.org/download/common/instructions.html#apple


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 20/7/22 09:35, Wayne Reid wrote:

Do you have a aversion from you, not apple that will work on my iMac? Or can 
you verify the one you put on the Apple iMac??? Please reply. It works on my
Windows 10 but not on my imacj…..
waynerei...@charter.net
-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Cheers
--
David Robley

Artist seeks Boss with vision impairment.
 



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



Re: Open Office

2022-07-19 Thread David Robley
Please see the Mac section of Instructions for Downloading and 
Installing Apache OpenOffice 4.0, 4.1 Versions - 
https://www.openoffice.org/download/common/instructions.html#apple


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 19/7/22 06:21, Wayne Reid wrote:

I use Open office on my Windows 10 but need to use it in my Apple computer. I 
tried 3 times to download it and it says when I try
To run it that the app has not been verified to work in apple. Can you make it 
work in apple? I need it in my iPad as well.
waynerei...@charter.net


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



Cheers
--
David Robley

Artist seeks Boss with vision impairment.
 



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



Re: Download

2022-07-15 Thread David Robley
Please see the Mac section of 
https://www.openoffice.org/download/common/instructions.html#apple - 
Instructions for Downloading and Installing Apache OpenOffice 4.0, 4.1 
Versions


On 16/7/22 15:02, Jack Newell wrote:

Thanks Paul.  Yes, this problem seemed to escalate once I foolishly upgraded 
from Big Sur to Monterey.


On 16 Jul 2022, at 15:28, Paul Collins  wrote:

I can’t advise you further but suggest you might consider subscribing to ‘Mac 
Help’ forum; it’s free and hassle free. They rapidly responded to a query I 
sent them (to solve a different issue) they were courteous and responded 
swiftly and solved the issue effectively. Asking help is easy on their website. 
 Osxdaily.org is very helpful BUT I haven’t yet worked out how post a request 
for help on their site.

I haven’t upgraded beyond Mojave because at App Store, to do so results in the 
System warning me that several NON Apple software packages will no longer work 
with ANY OS upgrade. So, unfortunately, I cannot help further but those forums 
are friendly, and FREE1

GOOD LUCK, fellow Mac fan.


On 16 Jul 2022, at 3:05 pm, Jack Newell  
wrote:

I run Monterey 12.4 and am having the same problem installing downloads.  When 
I attempt to quit Terminal I am asked “Do you want to terminate running 
processes in this window?”  And “Closing this window will terminate running 
process sudo.”  I then have two options: CANCEL and TERMINATE.  Then after 
making adjustments to Security and Privacy I am still unable to instal.  Any 
ideas?





On 14 Jul 2022, at 11:15, Paul Collins  wrote:

I run Mojave 10.14.6 on iMac late 2017 and had this problem. If you have ’System 
Preferences / Security & Privacy panel open, quit System Preferences (close it) 
and open Utilities Folder in Applications Folder.
Open “Terminal” app and in the widow that opens in Terminal, type the following 
command syntax EXACTLY
sudo spctl --master-disable

(I used Copy/Paste command as set out at osxdaily.com <http://osxdaily.com/>  website 
<https://osxdaily.com/2016/09/27/allow-apps-from-anywhere-macos-gatekeeper/ 
<https://osxdaily.com/2016/09/27/allow-apps-from-anywhere-macos-gatekeeper/>>.)

Terminal will ask you to enter (System) “Password:-“
Type your password and Quit ‘Terminal’.

 From desktop, reopen System Preferences/ Security & Privacy panel: you see the 
third App installation option displayed as snap below.


T/he non app install problem originates in the GateKeeper part of Mojave (since 
OS Sierra, apparently). This is how you adapt Mojave to suit your needs.



On 14 Jul 2022, at 6:29 am, Bill Rau mailto:wj...@ymail.com.INVALID>> wrote:

I tried to download OpenOffice on my iMac and it would not let me finish doing 
so.  Said “cannot verify developer” and may contain malware.

I have it on my old Windows system and like it and want it here also.  Can you 
help?

Bill
-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org 
<mailto:users-unsubscr...@openoffice.apache.org>
For additional commands, e-mail: users-h...@openoffice.apache.org 
<mailto:users-h...@openoffice.apache.org>



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



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



Cheers
--
David Robley

Artist seeks Boss with vision impairment.
 



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



Re: Install Apache

2022-05-23 Thread David Robley
It appears that Fire uses some kind of Android OS and there is no 
official Apache OpenOffice for Android - maybe 
https://play.google.com/store/apps/details?id=com.andropenoffice=en_US 
will work on a Fire??


Note that AndrOpenOffice is not supported here.

Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 5/22/22 02:17, Marcie Langlais wrote:

Can I install Open Office on my Amazon Fire tablet?

Thank you.

Marcie



Cheers
--
David Robley

Almost went crazy. Would have been a real short trip.
 



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



Re: 4.1.12.

2022-05-20 Thread David Robley

Hier wird englisch gesprochen.

Before trying to install the new version of AOO, close any open AOO 
processes. Go to Task manager and terminate any soffice processes.


Then without rebooting you computer, try the installation process again.

Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 5/20/22 20:04, ewrem...@t-online.de wrote:

Wolfgang Rempis , 71665 Vaihingen , e-mail Adr.: ewrem...@t-online.de
<mailto:ewrem...@t-online.de> und ewrem...@googlemail.com
<mailto:ewrem...@googlemail.com>
  
Hallo OpenOffice Team
  
Bekomme immer angezeigt dass ein neues OpenOffice 4.1.12. verfügbar ist,

und habe es schon oft versucht, dieses herunterzuladen, aber ich komme nie
zum Ende, ich klicke immer Vollinstallation an, ich durchlaufe alles fast
bis zum Schluss, dann kommt noch ein Button mit oder ähnlich : Bitte
beenden sie den 4.1.12. Schnellstarter bevor sie fortfahren, dann muss ich
beenden, was anderes geht nicht . Was tun ?
  
Frdl. Grüße , W. Rempis
  
  




Cheers
--
David Robley

Almost went crazy. Would have been a real short trip.
 



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



Re: Problems

2022-03-16 Thread David Robley
Did you read the Mac section in the Installation instructions - 
https://www.openoffice.org/download/common/instructions.html ?


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 16/3/22 11:46 am, zielinski wrote:

Have used OpenOffice before downloaded latest version but will not work on my 
iMac the problem is the source for download
Help
-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Cheers
--
David Robley

"I'm knitting a sweater for my guppy," said Tom wolfishly.
 



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



Re: Fw: Issue with OpenOffice downloading

2022-03-02 Thread David Robley
Probably because beloved Microsoft Windows has changed the file 
associations for .odt files to use MS Word. See 
https://forum.openoffice.org/en/forum/viewtopic.php?f=74=12918


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 2/3/22 2:11 pm, Greig McKellar wrote:

I sent a problem question I had to supp...@openoffice.org but I got my message 
returned to me! I hope this eddress works that you can help me!

From: Greig McKellar
Sent: 28 February 2022 19:34
To: supp...@openoffice.org 
Subject: Issue with OpenOffice downloading

Good evening,

I have an issue with -not sure my version or interoperability if I have a 
version of Word that came with my computer the home office I haven't activated 
as it costs which is why I downloaded Apache/OpenOffice.
This is not the first time that when I open Apache, write my note and hit save 
where it automatically saves my file in Word! Yes Word! Why should your program 
be saving my stuff in Word???
The free version I have downloaded here is 4.1.10
When I open the program and select Text Document, type my note, and hit save as 
type: I get ODF Text Document (.odt) (*.odt) as the type of document on that line to 
choose! Not to be confused with the name of the note, I'm speaking of the line under 
that! Now if I hit the dropdown of  'Save As Type" I do find two choices for an 
OpenOffice product..! I only -and following the norm, don't change that line 
when I am saving a product to choose! Never have I ever changed that line on any 
program EVER!! What normally comes up there is the type of program that is being 
saved!

Back to my question, why are my notes used w your product being saved as a Microsoft 
"Word" Program

Greig McKellar
gmmc...@hotmail.com



Cheers
--
David Robley

You can never get rid of a bad temper by losing it.
 



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



Re: Downloading OO 4.1.11

2022-01-28 Thread David Robley
Perhaps the Mac section of the installation instructions - 
https://www.openoffice.org/download/common/instructions.html#apple - 
will be of help to you. There are also some suggestions at 
https://forum.openoffice.org/en/forum/viewtopic.php?f=74=89283 you may 
find useful.


On 29/1/22 11:11 am, Jack Newell wrote:

My Apple computer recently updated to OS 12.1 (Monterey).  When I attempt to 
upgrade my open office to 4.1.11 it refuses to install it.  I’ve gone to System 
Preferences and “security and privacy” and changed instructions there to no 
avail.  Any ideas anyone?
-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Cheers
--
David Robley

"My parents are called Billy and Nanny," Tom kidded.
 



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



Re: Apple problem

2022-01-20 Thread David Robley

https://www.openoffice.org/download/common/instructions.html#apple

Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 21/1/22 8:00 am, mclean7640 mclean7640 wrote:


I have tried to download and open the Open Office app and received the 
message below.


macOS cannot verify that this app is free from malware.
I'm using a new iMac os12.1
I had no problem downloading and using on my old iMac
I understand Apple can be jerks but it should be my decision  to use 
products I feel are save.





Cheers
--
David Robley

How long will a floating point operation float?
 



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



OT: Re: File [not] deleted

2021-12-13 Thread David Robley

S ut wisnae me sounds like a Scots(?) accent "so it was nae [not] me"

On 14/12/21 10:13 am, Dave wrote:

Yes, apologies, I clicked send before checking all aspects of the
message to be sent.

Sorry, I don't understand the shorthand:
"S ut wisnae me."

Look forward to your reply tomorrow.

Dave

 Original Message 
From: ACG [mailto:freuc...@idnet.com]
Sent: Monday, December 13, 2021, 23:34 UTC
To: users@openoffice.apache.org
Subject: File [not] deleted


Err Dave it was your message to me which was off list.
S ut wisnae me.

Too tired now, will try to answer tomorrow...

Adrian

On 13/12/2021 23:08, Moderator wrote:

Hi Adrian,

Can we please keep this ON-LIST.

IF you are so so fully aware of these things, why do you still believe
that the software should be expected to continuously track EVERYTHING
across your entire OS file system and and continuously rebuild this
simplistic pointer/shortcut list.

You provide ZERO evidence that that some "unidentified" update "wiped"
the "recent documents" list. Even though that may be true, because
software, especially updates, can produce unpredictable results, anyone
who chooses relies entirely on some weak, simplistic archive record
outside of the OS, must accept the consequences of their choice.

For the benefit of others reading this and may be interested, can you
please describe your "work around"?

Dave


*From:* ACG [mailto:freuc...@idnet.com]
*Sent:* Monday, December 13, 2021, 22:42 UTC
*To:* Dave
*Subject:* File [not] deleted


Thanks, Dave, but I am fully aware of these things.
The fact is that following an update the recent documents list was
wiped. That includes pinned documents.
It is also the case that there are circumstances where the way you
open a file may or may not trigger it being registered on the "recent
documents" list.
Because I do understand these things I have been able to work around
it - but it is a faff.

Adrian

On 13/12/2021 22:32, Dave wrote:

 Original Message 
From: ACG [mailto:freuc...@idnet.com]
Sent: Monday, December 13, 2021, 21:48 UTC
To: users@openoffice.apache.org
Subject: File [not] deleted


On 13/12/2021 21:39, Brian Barker wrote:

At 14:29 13/12/2021 +, Adrian Grant wrote:

It's a bit of a faff - and you have to remember where they [sc. your
document files] all are ...

It's funny that: I find the same applies to many other things, too. I
have to remember where my keys are, my spectacles, my phone, my car,
those tomatoes I bought yesterday - oh, and my document files.

Brian Barker

Très drôle - but having to repopulate a "recent documents" list is a
pain

Adrian Grant

You appear to be unaware of what the "recent documents" list is.
It is nothing more than a very simplistic record of files that were
previously opened/used by the software at some point in time. If those
files have been relocated/deleted by anything outside of the software's
control, the "recent documents" pointers/shortcuts to those locations
will be invalidated.
If you, as a user, choose to reconstruct/repopulate that list of
pointers/shortcuts that is your choice, but it is not something the
software should be expected to continuously track across your entire OS
file system and continuously rebuild.
"In my NOT so humble opinion", for inexperienced computer/software
users
the "recent documents" list is the worst, most misleading and confusing
thing ever added to the software. It is only useful if you genuinely
understand what it really is and how it functions.

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



Cheers
--
David Robley

$$$ not found -- (A)bort (R)efinance (B)ankrupt
 



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



Re: My file

2021-12-11 Thread David Robley
See [Tutorial] How to find and un-delete AOO/LO temporary files - 
https://forum.openoffice.org/en/forum/viewtopic.php?f=71=85038 - for 
ways of trying to recover corrupted files. Do this as soon as possible; 
don't waste time with the file of hash tags as it contains nothing of 
your original document.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 11/12/21 5:18 pm, Devyn Thomas wrote:
I had to force shut down my laptop, and when I pulled up a crucial 
OpenOffice file, it showed a bunch of hashtags. How do I get this 
crucial document back?



Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986>for Windows



Cheers
--
David Robley

"Would you like to buy some cod?" asked Tom selfishly.
 



Re: Fw: Apache - open office

2021-12-07 Thread David Robley
For the record, same questions asked, and responded to, on the English 
AOO forum.


On 8/12/21 5:02 am, Larry Tanzer wrote:

See below

- Forwarded Message -
*From:* Steven Ahlers 
*To:* Larry Tanzer 
*Sent:* Tuesday, December 7, 2021, 07:00:37 AM PST
*Subject:* Re: Apache - open office

Larry,

As I previously requested please send requests for assistance 
to: users@openoffice.apache.org




On Dec 7, 2021, at 7:57 AM, Larry Tanzer  wrote:


Good Morning, Steven,

Sorry to bug you, but I have a couple more problems that I hope you 
can help me with.


First, I am trying to print mailing labels (Avery 8160) 1" x 2-5/8".  
I cannot find an option for that size label. Everything I try shows 
as 3.94" x 3.94". How can I make up a list of mailing labels the size 
I want?


Second, after I have saved an item, be it a document, a photo, a 
download or whatever, and I go to open it, all I get is what is shown 
in the attached screen shot (ASC II Filter options or one of the 
other screen shots also attached.  Am I doing something wrong?  How 
can I open these things?  There seems to be no pattern, nor rhyme nor 
reason as to which ones will open properly and which ones won't.


Thank you very much for whatever help you can provide.

Cheers and, above all, STAY HEALTHY,

Larry



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



Cheers
--
David Robley

Oxymoron: Restless Sleep.
 



Re: Openoffice cannot find a working email configuration

2021-12-05 Thread David Robley
You need an email client that understands MAPI (Thunderbird, for 
example?) set as default email client in Windows.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 6/12/21 9:44 am, Byron Martin wrote:

Hi, I don't have Tools/Options/Internet _*Email
*_Version 4.1.11 on Win10Pro
**_**_



Cheers
--
David Robley

Words are not food, though sometimes we must eat them.
 



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



Re: Apache OpenOffice available in the Microsoft Store on Windows 10

2021-11-18 Thread David Robley
Please see the Mac section of Instructions for Downloading and 
Installing Apache OpenOffice 4.0, 4.1 Versions - 
https://www.openoffice.org/download/common/instructions.html#apple


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 19/11/21 10:57 am, farhad khosravi wrote:

Hi,
I just downloaded the Apache and was trying to install it on my MacBook with OS 
11.6 but I got a message that [“Open Office” can not be opened because the 
developer can not be verified]
What can I do to get it installed.

Thanks,

Farhad

Sent from my iPhone


On Nov 18, 2021, at 3:53 PM, Marcus  wrote:

Am 18.11.21 um 21:51 schrieb Matthias Seidel:

Apache OpenOffice has already been available in the new Microsoft Store on 
Windows 11 since October.
With the latest App update, the new store is also coming to Windows 10.
Users can now install the latest OpenOffice version with a single click!
The Store Listings are localized in English, German, Italian, Polish and 
Portuguese.
Feel free to contact me if you want to add more languages or if you have any 
questions.

great news. :-)

Then the new version was worth it to release at this point of time - to be 
ready for the Win 10 store.

Marcus


-
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



Cheers
--
David Robley

"Someone removed all the twos from this deck," Tom deduced.
 



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



Re: open office and M1 chips

2021-11-05 Thread David Robley

There was a post on the developer list earlier today which said:

"I upgraded our M1 machine now to macOS Monterey 12.0.1.

AOO 4.1.11 works without problems so far (only basic tests)"

Since you are not subscribed to this list you may not see all the replies to 
your query. To subscribe to Apache OpenOffice mailing lists go to 
http://openoffice.apache.org/mailing-lists.html

As a courtesy I have forwarded a copy of this reply to you as well as to the mailing 
list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address will be 
ignored.

On 5/11/21 6:25 pm, David Manchee wrote:

To whom it may concern,
I am about to purchase a MacBook that has the new M1 processor in,. I do not 
know that much about software compatibility etc but I was wondering if the 
current version of open office will work with this or the latest OS Monterey?
Will much appreciate your advice
Dave
-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Cheers
--
David Robley

When I gave her the ring, she gave me the finger.
 



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



Re: colored tabs

2021-08-27 Thread David Robley
Are you using MacOS? If so, see 
https://forum.openoffice.org/en/forum/viewtopic.php?f=17=105999


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 27/8/21 10:43 am, Skip Joers wrote:

I’ve been enjoying OpenOffice for a number of years now, but the only bad thing 
about it is the color of the dark blue tabs on action windows, like SAVE or 
CANCEL, or whatever action one is to choose. They are so dark I cannot read 
what the tab copy says. I can’t find anywhere on preferences to change color 
for these actions. Hope you can fix this, and thanks for listening.
sj
-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Cheers
--
David Robley

"I admire East End gangsters," said Tom crazily.
 



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



Re: Someone is Selling Open Office

2021-08-25 Thread David Robley
The Apache License http://www.apache.org/licenses/LICENSE-2.0.html seems 
to suggest this is acceptable. I note the version for sale is about two 
years old and discounted to ten bucks :-)


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 25/8/21 4:23 pm, Dale Kimball wrote:

Hey folks,

I don’t know how to reach you properly to report this but someone is selling 
your program in the Microsoft store.

Buy OpenOffice Suite - Microsoft 
Store<https://www.microsoft.com/en-us/p/openoffice-suite/9n91p8b0dmwn#activetab=pivot:overviewtab>

They’ve been selling it for $70 and I have to imagine this is not legal.

Regards,

Dale

Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows




Cheers
--
David Robley

Break up a relationship - buy a computer!!
 



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



Re: Error creating account

2021-08-14 Thread David Robley

It would help if you could advise where you are trying to create an account.

Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 14/8/21 11:13 am, Laz wrote:

Hello
I get this message when trying to create an account with the email la...@pm.me
"Unable to send e-mail. Contact the site administrator if the problem persists."

Sent with [ProtonMail](https://protonmail.com/) Secure Email.



Cheers
--
David Robley

H lp! S m b d st l ll th v w ls fr m m k yb rd!
 



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



Re: Compte

2021-07-28 Thread David Robley

Note: this is an English language mailing list.

OpenOffice is free - see http://www.openoffice.org/why/index.html

So is LibreOffice - see https://www.libreoffice.org/discover/libreoffice/

Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 28/7/21 3:30 pm, Maëva Marchizet wrote:

Bonjour,

Je me permets de vous contacter pour savoir si le logiciel open office est
gratuit ou payant. De meme pour Libre office.
  Merci



Cheers
--
David Robley

A tribble a day keeps the Klingons well fed.
 



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



Re: update, probleem met verification

2021-07-11 Thread David Robley
You haven't gien an error message, so I'll guess your issue may be the 
Gatekeeper in MacOS. Please see the Mac section of 
https://www.openoffice.org/download/common/instructions.html#apple 
Instructions for Downloading and Installing Apache OpenOffice 4.0, 4.1 
Versions


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 9/7/21 11:15 pm, Wica de Geus wrote:

I have a mac, OS Catalina versie 10,15.7

Update to Open Office 4,1,10 probleem with verification.

How to repair this.

Thanks

Peter



Cheers
--
David Robley

"I'll tempt Adam tonight," she said evilly.
 



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



Re: Hello there

2021-07-10 Thread David Robley
Please see the Mac section of 
[url=https://www.openoffice.org/download/common/instructions.html#apple]Instructions 
for Downloading and Installing Apache OpenOffice 4.0, 4.1 Versions[/url]


If that does not resolve your problem - you talk about both downloading 
and opening as problems. What is the exact situation, including any 
error messages you get.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 11/7/21 7:36 am, Deena wrote:

I am having an issue with opening my Open Office on my new Mac OS (11.4 Big Sur 
version)
and I am seeking immediate assistance with this issue.

This software is not downloading on my mac so if I could please resolve this 
I’d kindly appreciate it.

Thank you,
Deena
-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Cheers
--
David Robley

Oxymoron: Tax Return.
 



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



Re: Le texte du fichier .odt n'est plus visible. Lazikova

2021-06-21 Thread David Robley

See https://forum.openoffice.org/en/forum/viewtopic.php?f=74=84056

Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 21/6/21 7:08 pm, Yulia LAZIKOVA wrote:

Bonjour, mon fichier qui était créé dans le programme 
Apache_OpenOffice_4.1.7_Win_x86 s'est changé. Au lieu de texte il n'y a que 
##

J'ai réinstallé Apache_OpenOffice_4.1.7_Win_x86 mais ça n'a rien donné.

Que faire ?
Merci
Yulia LAZIKOVA



Cheers
--
David Robley

I'm leaving my body to science fiction.
 



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



Re: unable to login or get new account activated

2021-05-27 Thread David Robley
For the record, a user with that email address has recently posted a 
question on the forum.


On 28/5/21 6:43 am, VE4PER / Andy wrote:
I am unable to login or get new account activated to access forums and 
make board posts.


I set username and password as requested but did not receive any 
activation information.


Assistance in resolving this is appreciated.

ve4per  Andy



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



Cheers
--
David Robley

I have a 33.6Kbps modem and 1.5bps fingers
 



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



Re: Getting OO up and running

2021-05-23 Thread David Robley
I'm guessing you might be using a Mac; did you read and follow the 
installation instructions at 
https://www.openoffice.org/download/common/instructions.html


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 23/5/21 10:25 am, Howard Seguine wrote:

I also checked Applications and found no Apache or OO.


-Original Message-
From: HOWARD SEGUINE 
To: users@openoffice.apache.org
Sent: Sat, May 22, 2021 8:47 pm
Subject: Getting OO up and running

I downloaded Apache OpenOffice (OO) and had no problems.

After installing, I noticed there was no OO icon on dock or  basic screen.

What do I do next to have an operable OO?



Cheers
--
David Robley

"I hate playing craps," Tom said dicily.
 



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



Re: Can't get the program to download or install

2021-05-23 Thread David Robley
Did you read, and follow, the installation instructions at 
https://www.openoffice.org/download/common/instructions.html


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 23/5/21 12:24 pm, Zoe Langley wrote:

Hello,
I'm having difficulty getting the program to download. i clicked the icon for 
'download full installation. The install program downloaded but not the 
program. The instll program ran, but did not set up anything. zi clicked the 
'donload icon and the program did not download.   Can you show me how to get 
the program to download and install? Thank you.

Zoe Langley
Kentucky USA

Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10




Cheers
--
David Robley

"I hate playing craps," Tom said dicily.
 



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



Re: Recent version update

2021-05-18 Thread David Robley
You failed to mention which operating system you use so I'll simply 
direct you to the common installation instructions for Apache OpenOffice 
- which are linked from the download page.


https://www.openoffice.org/download/common/instructions.html

If you have a specific problem, include your OS and version and describe 
exactly what happens, including any error messages.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 19/5/21 8:06 am, Walter . wrote:

Goodnight.

I live in Brazil and every time I am going to update Open Office to the latest 
version, I have enormous difficulty because the way to update this program is 
totally different from all other text editors.

The latest version, for example, my notebook is not accepting. For some reason 
he refuses it.

I cannot uninstall and re-install Open Office every time an update occurs as I 
may lose important documents.

In this way, I ask you to send me the tutorial or full explanation of how to 
update this program to the latest version.

I intend to save this reply with a message for this and for future updates.

I await urgent information.

Thanks!

Walter

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



Cheers
--
David Robley

"Nietzsche is dead." --God.
 



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



Re: OpenOffice update 13/05/2021 naar 4.1.10

2021-05-14 Thread David Robley

To unsubscribe, e-mail:users-unsubscr...@openoffice.apache.org

On 15/5/21 12:17 am, Kelly Baker wrote:

Please remove me from this mailing list

On Fri, May 14, 2021 at 6:08 AM  wrote:


Hallo,

Update 4.1.10 has been blocked by Bitdefender Total Security
See attached information.



Van: "telenet leunens" 
Aan: "telenet leunens" 
Verzonden: Vrijdag 14 mei 2021 12:42:32
Onderwerp: OpenOffice update 13/05/2021 naar 4.1.10

Geïnfecteerd bestand met succes geblokkeerd 23 uur geleden
Functie: Antivirus
Het bestand C:\Users\Gebruiker\OneDrive\Bureaublad\OpenOffice 4.1.10 (nl)
Installation Files\setup.exe is geïnfecteerd met
Gen:Variant.Barys.83982. /De bedreiging is met succes geblokkeerd, uw
apparaat is veilig.

Bitdefender Total Security


Best Regards,

Charles





Cheers
--
David Robley

"I've gone back to using my maiden name", said Mary remissly.
 



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



Re: OPEN OFFICE 4.10... ACTIVATION TROUBLES

2021-05-12 Thread David Robley
Please see the Mac section of Instructions for Downloading and 
Installing Apache OpenOffice 4.0, 4.1 Versions -> 
https://www.openoffice.org/download/common/instructions.html#apple


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 12/5/21 8:36 am, JEF CAMERON wrote:

HEY,

I just downloaded the latest update of OpenOffice and the download and 
insertion went fine, but when I try to open the app, my iMac says it can’t be 
opened because it can’t be verified, and then it gives me the option of moving 
the app to the trash or cancelling.  How do I fix this - and while you’re at 
it, I haven’t been able to print anything I have in OO for a couple years now 
and I can’t figure out how to fix that either.  Appreciate some help here!

JEF CAMERON-HAWKINS
SAN FRANCISCO CA
415 309 0685



Cheers
--
David Robley

Computers run on faith, not electrons.
 



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



Re: Spell check in apache open office version 4/1/10 not working

2021-05-11 Thread David Robley
If the above solution doesn't help, have a look at [Troubleshooting] 
Spell check in OpenOffice 
https://forum.openoffice.org/en/forum/viewtopic.php?f=74=16512


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 11/5/21 5:24 pm, Rory O'Farrell wrote:

On Tue, 11 May 2021 07:15:25 +
Stan Reffin  wrote:


I have checked all the  all boxes in the tools section and set English USA. The 
bottom box of the spell check is greyed out.  So the spell check seems not to be 
working  nor does the red underline when typing. Simple solution please from 
Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10


A quick solution is to delete or rename your OpenOffice User Profile.  
OpoenOffice, on next startup, will create a new User Profile, and the 
spellcheck should work after that. To do this:

Close OpenOffice and the Quickstarter. Open File Explorer. Copy and paste 
%appdata%\OpenOffice\4 in the File Explorer Address Bar and press Enter. Rename the 
"user" folder (user.old is good to use). Start OpenOffice.




Cheers
--
David Robley

This tagl ineh asto oman yfou rlet terw ords.
 



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



Re: Web site problem.

2021-05-06 Thread David Robley
Are you referring to the Apache OpenOffice forums? If so, there is no 
user registered there with the email address you used to post this 
message. Can you provide the user name that you registered under?


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 6/5/21 10:30 am, Phillip Cardon wrote:


Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10
I registered so I could post comments, but at the end it gave message “unable 
to send email”. Now, it won’t let me register gives message that my user id and 
email or already registered. I then tried password recovery and I get the 
original message “unable to send email, contact site administrator if condition 
persists”.




Cheers
--
David Robley

Taxes are not levied for the benefit of the taxed.
 



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



Re: OPEN OFFICE WRITER MAC DOWNLOAD - CANT OPEN IT.

2021-04-28 Thread David Robley
Please read the  Mac section of ]Instructions for Downloading and 
Installing Apache OpenOffice 4.0, 4.1 Versions at 
https://www.openoffice.org/download/common/instructions.html#apple for 
the solution.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 28/4/21 5:05 pm, Milena Koncar wrote:

Hi,

I have a 15” MacBook Pro mid 2012, Catalina OS 10.15.7 and downloaded the Open 
Office but when I try to open it, Mac gives me a pop up sign that says that Mac 
OS CANNOT OPEN OPRN OFFICE CAUSE THE DEVELOPER IS NOT VERIFIED AND THAT THEY 
CANT KNOW IF ITS FREE FROM MALWARE.

Whats the solution to this? Cause I just paid for a marketing course that its 
all based on OPEN OFFICE usage and I can’t download it.

Please let me know what’s going on.
Why do u have a Mac OS X download on your site that we can’t actually download?


Thanks,
Milena.



Cheers
--
David Robley

MS Windows -- From the people who brought you EDLIN!
 



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



Re: document opens has pages of hatch symbols

2021-04-19 Thread David Robley
Your file is totally corrupted. If you have Always create backup copy 
turned on in Tools | Options | Load/Save |General, check in the backup 
directory set in Tools | OpenOffice | Paths for a backup.


Otherwise see 
https://forum.openoffice.org/en/forum/viewtopic.php?f=74=84056 which 
has some suggestions on ways to try and recover earlier versions.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 19/4/21 2:55 pm, Russel Riley wrote:

Dear sirs.
Am in the processing of producing a document consisting of text and JPEG.
Tried access the file yesterday and all the document shows are 77 pages of 
hatch tag symbols.
All my other files open OK
Can you please help?
Regards.
Russell

Sent from Mail for Windows 10




Cheers
--
David Robley

Eagles may soar, but weasels don't get sucked into jet engines.
 



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



Re: trouble with login - email address Re: spellcheck - continuously causing problems

2021-04-13 Thread David Robley
Log in using the username associated with that address; go to User 
Control Panel via link at top left of page; select Profile tab; select 
Edit Account Settings; enter new email details.


Note - please only ask user related questions on the user list; don't 
send multiple emails to unrelated mail addresses.


On 13/4/21 3:36 pm, Chris Addington wrote:

hi

i am registered with oo forum under cd...@eircom.net which is an old 
address no longer operational,


 - how do i sort this out?

regardschris


Chris Addington Pr.Eng.





Cheers
--
David Robley

"I brush my teeth ten times a day," said Tom implacably.
 



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



Re: spellcheck - continuously causing problems

2021-04-12 Thread David Robley
See if Troubleshooting Spell check in OpenOffice -> 
https://forum.openoffice.org/en/forum/viewtopic.php?f=74=16512 helps.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 12/4/21 7:12 pm, Chris Addington wrote:

hi

openoffice spellcheck

spellcheck constantly causes problems - in standard new text document 
(selecting top lhs symbol) it doesn't work


have setup a template new text document in which spellcheck works from 
time2time


-> openoffice is unreliable




regardschris




Cheers
--
David Robley

I get mail I exist.
 



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



Re: log in

2021-04-07 Thread David Robley

Did you try the link "Request new password"?

Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 7/4/21 1:24 pm, Yo Soy wrote:

*Hello *

Sorry, unrecognized username or password. Have you forgotten your password?

The name Yosoy is already taken.
The e-mail addressyosoydivini...@gmail.com  is already registered. Have you
forgotten your password?

I can't log in,  pagehttps://extensions.openoffice.org/

Cheers
--
David Robley

Life is like a Car-wash and I'm on a bicycle.
 



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



Re: Update won't work on Mac

2021-03-31 Thread David Robley

Please see the installation instructions.

https://www.openoffice.org/download/common/instructions.html#apple

Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 1/4/21 8:06 am, Ronald Wiedmann wrote:

“OpenOffice.app” cannot be opened because the developer cannot be verified.

macOS cannot verify that this app is free from malware.


How can I override this?




Cheers
--
David Robley

Chaste makes waste.
 



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



Re: Documents not found

2021-03-15 Thread David Robley
It is extremely unlikely that you files are 'gone'. Most likely the 
unexpected shutdown cleared your list of recently used files: if you 
were prompted for your name when you restarted OpenOffice, this is 
certainly the case.


Use the Finder to locate your files and open them; after you open and 
close a file it should re-appear in the recent files list.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 15/3/21 12:16 pm, Kristal Tan wrote:

HI,
   Im using MacBook Air, and usually just leave it open and my Mac shut down 
due to no battery. After that, the documents are gone. Able to assist?

Kris.
+65 90263315.
-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Cheers
--
David Robley

Contentsoftaglinemaysettleduringshipping.
 



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



Re: Open Office Writer. How to set default font and other page defaults

2021-03-09 Thread David Robley

https://forum.openoffice.org/en/forum/viewtopic.php?f=71=1161

Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 9/3/21 11:45 pm, Juliet Blackburn wrote:

I have tried numerous times to set my font (forever!) in Open Office Writer, 
but it keeps flipping back.

https://forum.openoffice.org/en/forum/viewtopic.php?f=71=1161

   I find the Help section useless on this and I have tried the community 
forums etc to no avail.   I wonder whether it might be a problem with operating 
Open Office on an Apple iMac,  since I am offered a load of Apple fonts too.

I also want to permanently set my files to save as Microsoft XP/2000 files.


I strongly recommend you don't do this; save your files in native ODF 
(Open Document Format) and if needed to send to others, complete the 
document and Save As to a foreign format.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.




Thanks,

Juliet



Cheers
--
David Robley

Sleep is a poor substitute for caffeine.
 



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



Re: Apache for Windows 10

2021-03-04 Thread David Robley
There is no 64 bit version of OpenOffice for Windows yet; select the 
Windows 32 bit option at http://www.openoffice.org/download/


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 5/3/21 9:29 am, C N wrote:

Hi
I am out of the habit of using your wonderful open source Apache open office, I 
cant see where to select the right download (just need the document programme 
for typing letters)/64bit?

Please advise?

Many thanks

Conchita Navarro (UK)

Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10




Cheers
--
David Robley

"It's time for the second funeral," Tom rehearsed.
 



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



Re: OpenOffice Writer Issues

2021-03-04 Thread David Robley
Some information about your environment might be helpful: operating 
system and version, and AOO version for starters. What icon do you mean 
by "clicking on the icon". How are you "trying to  open a document".


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 4/3/21 7:20 am, Francis Lee wrote:

Whenever I try and open OpenOffice Writer by clicking on the icon or just 
trying to open a document, it never opens. This just started happening within 
the last few days or so, and I am requesting assistance.



Cheers
--
David Robley

But soft, what bird through yonder window breaks?
 



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



Re: Themes

2021-03-02 Thread David Robley
You have a number of arrows shown across the top of your window? Uncheck 
Tools | Gallery


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 3/3/21 9:48 am, rossbutler3 rossbutler3 wrote:


Hi


I have a problem in that the thems panel is showing in all my 
documents. I there a way of removing the and showing a full page of 
document?



Your assistance would be most appreciated.


Ross Butler


Cheers.




Cheers
--
David Robley

"Someone stole my wheels," Tom said tirelessly.
 



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



Re: labels

2021-02-09 Thread David Robley
Go to File | New | Labels and select the Labels tab. Under Format, 
select Sheet. Avery 5366 labels come on a letter size sheet, so from 
Brand select Avery Letter Size. Finally, scroll through the selections 
under Type to find 5366.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 10/2/21 8:30 am, Richard and Peggy Johnson wrote:

I am trying to set up a template to print Avery labels #5366, which I could do 
in Word, but cannot figure how to do it in Openoffice.  Can you help 
me?Thanks.Peggy Johnson



Cheers
--
David Robley

Truck Pulls: for people who cannot understand the WWF
 



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



Re: error crash

2021-02-01 Thread David Robley
Could we have a hint as to what is crashing, and the circumstances in 
which this happens? If it is happening with Apache OpenOffice, 
information on your OS and OpenOffice version might be helpful.


On the other hand, if your car is crashing,this might not be the right 
place for you to ask.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 1/2/21 10:15 am, Business Solutions wrote:

i keep having the issue with crashing and cant find out why i keeps doing it



Cheers
--
David Robley

==/==/==/==Police tagline==/==/==Do not cross ==/==/==/==
 



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



Re: Enquiring about the opensource of Apache OpenOffice

2021-01-27 Thread David Robley
You can use it for any purpose, on as many machines as you like. See 
http://www.openoffice.org/why/index.html


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 28/1/21 1:59 am, Rijul Bajaj wrote:

Hi,

I just wanted to enquire that can I use Apache OpenOffice for my own
business?

Thanks,
Rijul



Cheers
--
David Robley

Bungee Jumper? Catch you on the rebound.
 



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



Re: OpenOffice Document Recovery dialog box on OpenOffice start up

2021-01-24 Thread David Robley

Your problem is totally unrelated to the question to which you are replying.

Please read the Installation Guide for Mac - 
https://www.openoffice.org/download/common/instructions.html#apple


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 24/1/21 4:55 pm, Pogány Ferenc wrote:

Thank you for the advice. I have tried it but with no results. I keep getting 
the same message: MacOS cannot open OO because the developer (SourceForge) 
cannot be checked. I subscribed but I cannot find my way around the site.

Thanks anyway.

Ferenc


2021. jan. 20. dátummal, 23:16 időpontban David Robley  
írta:

Try choosing Cancel instead of Start Recovery. That should stop the repeated 
offers to recover.

Since you are not subscribed to this list you may not see all the replies to 
your query. To subscribe to Apache OpenOffice mailing lists go to 
http://openoffice.apache.org/mailing-lists.html

As a courtesy I have forwarded a copy of this reply to you as well as to the mailing 
list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address will be 
ignored.

On 21/1/21 8:02 am, John Baniqued wrote:

When starting OpenOffice 4.1.7 (Windows 10 system, all updates current) I get the "OpenOffice Document 
Recovery" dialog box. It indicates the Document Name as CFII.odt, and status Not recovered yet. (The missing file 
CFII.odt was deleted in error.) Clicking the "Start Recovery" button results in a status of "Recovery 
failed". Clicking the "Next" button at this point starts a blank .odt file.

All previously saved documents appear to be OK after going through all the 
above. It is concerning when starting OpenOffice I always get the same 
OpenOffice Document Recovery dialog box. What is the significance of that file? 
How is it used? When does OpenOffice create that file? Is there a way to 
rebuild the CFII.odt file? Is that file really necessary (all files appear OK)?

I appreciate any and all help you can provide.

John P. Baniqued


Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10



Cheers
--
David Robley

I'd love to, but you know how we psychos are.


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


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



Cheers
--
David Robley

My computer has a terminal illness
 



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



Re: OpenOffice Document Recovery dialog box on OpenOffice start up

2021-01-20 Thread David Robley
Try choosing Cancel instead of Start Recovery. That should stop the 
repeated offers to recover.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 21/1/21 8:02 am, John Baniqued wrote:

When starting OpenOffice 4.1.7 (Windows 10 system, all updates current) I get the "OpenOffice Document 
Recovery" dialog box. It indicates the Document Name as CFII.odt, and status Not recovered yet. (The missing file 
CFII.odt was deleted in error.) Clicking the "Start Recovery" button results in a status of "Recovery 
failed". Clicking the "Next" button at this point starts a blank .odt file.

All previously saved documents appear to be OK after going through all the 
above. It is concerning when starting OpenOffice I always get the same 
OpenOffice Document Recovery dialog box. What is the significance of that file? 
How is it used? When does OpenOffice create that file? Is there a way to 
rebuild the CFII.odt file? Is that file really necessary (all files appear OK)?

I appreciate any and all help you can provide.

John P. Baniqued


Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10




Cheers
--
David Robley

I'd love to, but you know how we psychos are.
 



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



Re: password protect

2021-01-08 Thread David Robley
If the file has already been saved, you will need to use File | Save As 
and check the box for "Save with password".


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 9/1/21 9:19 am, Ed Wester wrote:
I do not have the option to password protect when I save a document. 
Please Advise.







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



Cheers
--
David Robley

Man who jumps through screen door likely to strain himself.
 



Re: Edit attachments

2021-01-07 Thread David Robley
Your recipient needs to save the attachment(s) to their computer - the 
saved files will then be editable unless you have specifically set them 
otherwise.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 8/1/21 8:02 am, Esther Fyk wrote:

Hello:
When I send Open Office documents from my gmail the recipient (who does not 
have gmail) cannot edit them - they are ‘Read Only’.  How can I send them so 
they can be edited by the recipient?
Thank you
Esther Fyk
-
To unsubscribe, e-mail: users-unsubscr...@openoffice.apache.org
For additional commands, e-mail: users-h...@openoffice.apache.org



Cheers
--
David Robley

Don't ask me, I'm making this up as I go!
 



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



Re: Assistance needed to Download the current OpenOffice

2021-01-01 Thread David Robley
Have you read the Installation Guide at 
https://www.openoffice.org/download/common/instructions.html ?


Can you tell us what you have done and what messages you get that make 
you think AOO won't install. Information about your operating system - 
Windows, MacOS, other, would also be helpful.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 2/1/21 1:43 pm, Gloria Weir wrote:

Hi.  It used to be easy to Download the most recent OpenOffice and now it
won't install on my computer.

I need your assistance in Downloading a version of OpenOffice please.  I
really like working with it.
I only need it to do documents.

Thank you

Gloria



Cheers
--
David Robley

Oxymoron: Wicked Good.
 



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



Re: Bizarre registration system!

2020-12-27 Thread David Robley

Someone seems to have gotten out of bed on the wrong side this day.

I'll put on my guessing hat and have a try: guess a) is that you are 
referring to the OpenOffice English forum username, and guess b) is that 
you registered there using the same email address you used to send to 
this mailing list. If my guesses are right, the user name is RobinZ.


If my guesses are not correct, perhaps you could provide the mailing 
list with a little more detail.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have forwarded a copy of this reply to you as well as to 
the mailing list. DO NOT reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.



On 28/12/20 7:57 am, notify...@hotmail.com wrote:
So I can't remember my username and because of that I can't reset my 
password even though I am in control of my email address I've 
registered with years ago.


Does that make any sense?  Do you people even use your own system?  It 
doesn't seem like you do.


Can you reset this account please?

And maybe rethink the registration system so it makes the slightest 
bit of sense?  This isn't the CIA.  Its just office productivity 
software.  What's with the over the top security?


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



Cheers
--
David Robley

Bugs are Sons of Glitches!
 



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



Fwd: Re: Apache Open office Microsoft word

2020-12-03 Thread David Robley

Forwarded to the questioner who is not subscribed to the list.



 Forwarded Message 
Subject:Re: Apache Open office Microsoft word
Date:   Fri, 4 Dec 2020 00:20:51 +0100
From:   Regina Henschel 
Reply-To:   users@openoffice.apache.org
To: users@openoffice.apache.org



Hi Grace,

Grace Lock schrieb am 03-Dec-20 um 23:25:

Can Microsoft Word  open Apache office files?


It depends on the version of Word.

You can look into
https://docs.microsoft.com/en-us/openspecs/office_standards/ms-oodf3/9888e2ba-a02d-4116-a11c-9382cec64e94
to read which features are supported or not supported in Word.

You need to set the ODF format version to "1.2" in Tools-> 
Options->Load/Save->General. Word cannot understand any of the 
"extended" features.


Kind regards
Regina

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



Re: Inserting

2020-11-28 Thread David Robley
Please read 
https://forum.openoffice.org/en/forum/viewtopic.php?f=71=86682 If that 
doesn't help, please give more information on exactly what steps you are 
taking, and what happens, together with information on your OS and AOO 
versions.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have sent a copy of this reply to you as well as to the 
mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 29/11/20 12:46 pm, Damian Fedorko wrote:

Greetings Open Office –

For some reason, every time I try to insert a picture on a document/letter, it 
doesn’t happen. I have restarted the download several times and have tried to 
cut and paste but I have failed. So I am asking you to troubleshoot my problem 
and I would be very grateful. Thank you and have a great week.
Damian Fedorko

Sent from Mail for Windows 10




Cheers
--
David Robley

Life is only as long as you live it.
 



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



Re: OpenOffice 4.1.8 release

2020-11-23 Thread David Robley
I assume you are using Windows 10; you may be encountering issues with 
Windows Defender or an antivirus program; For Defender, see 
https://forum.openoffice.org/en/forum/viewtopic.php?f=74=97507


Alternatively AV may be blocking access - you'll need to consult 
documentation for whatever AV you are using to determine how to resolve 
the blocking.


Either way the problem would not be with OpenOffice.

Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have sent a copy of this reply to you as well as to the 
mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 23/11/20 5:05 pm, Richard Walker wrote:

While logged in as the administrator, the newest OpenOffice release for
Windows installs almost all the way and then gives an error message that
permission doesn't exist for c:\public\users\desktop and I need to log in
as administrator (which I have done) or I should contact the system
administrator (yeah, right).
Thought you might want to know.  It seems like most years I have to swap
from OpenOffice to LibreOffice ... and then back again.  I have wondered
more than once if those working on these packages "EVER" test their
releases before sending them out the door.
So, for now, back to LibreOffice until they goof up next time.





Cheers
--
David Robley

Breathing may be hazardous to your health.
 



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



Re: I GIVE UP!

2020-10-30 Thread David Robley
You have, for some reason, a series of 24 Sections in your document 
starting on (about - as I don't have all the fonts used in the document) 
page 42.


You can see these if you open the Navigator - F5 or View | Navigator; 
click on any of the labels to jump to the relevant part of the document. 
On screen, these sections appear, in my Writer, with a light grey 
boundary. I'm not sure what the purpose of those sections is.


At a guess, a change has been made to your configuration to show section 
boundaries as some shade of blue?


You can manage the colour of, or turn off display of section boundaries, 
via Tools | Options | OpenOffice | Appearance under Custom Colours; 
you'll need to scroll down a bit to get to Section Boundaries in the 
Text Document section.


Just as an aside - you seem to be ignoring the most powerful feature of 
Writer, which is Styles.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have sent a copy of this reply to you as well as to the 
mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 30/10/20 8:43 am, nicholas wrote:

  ok guys, since there are no attachments, the boxes appear in the last pages, 
a short story called 'a flight not fancy [weightiness]
my request is this - if you are not getting blue boxes and i am and i am using 
open office windows 10, could someone try copying the text and sending it back?
we'll go from there.
but thanks
nicholas
 On Thursday, October 29, 2020, 06:09:16 PM EDT, Wade Smart 
 wrote:
  
  I have no blue boxes on pages 40-42.




Cheers
--
David Robley

"I'm a Soviet agent in England," said Tom bluntly.
 



Re: INSTALLAZIONE Open office

2020-10-29 Thread David Robley

https://www.openoffice.org/download/common/instructions.html#gatekeeper

Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have sent a copy of this reply to you as well as to the 
mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 30/10/20 4:21 am, alessandro servolini wrote:
Salve, io ho un macOs con versione catalina 10.15.7 ed uso open office 
da anni. Oggi ho provato a fare l’aggiornamento che mi veniva 
suggerito (open office 4.1.7) e da quel momento non mi è più 
funzionato, e provando a reinstallare da capo il programma ho ancora 
lo stesso problema (ho provato anche le versioni più vecchie fino 
all’ultima scaricabile che è la 4.1.0 ma mi danno lo stesso problema:


dopo l’istallazione, quando clicco sull’icona di open office, mi 
appare un avviso che dice: il computer non apre open office perchè non 
può verificare che il programma scaricato sia privo di malware.
Ho già contattato l’assistenza Apple ma hanno detto che probabilmente 
è un problema di compatibilità di open office con questa versione di 
Catalina(fino ad oggi ho comunque usato open office con questa 
versione ed aveva sempre funzionato).


Vorrei quindi sapere per favore come risolvere il problema dato che ho 
urgente bisogno di usare questo programma per lavoro, e senza poterlo 
aprire non posso più accedere ai file che avevo.



Leggendo queste compatibilità sul vostro sito mi pare che la versione 
Catalina dovrebbe essere supportata.



Grazie, Alessandro



Cheers
--
David Robley

"Who is the vice president?" Tom asked allegorically.
 



Re: Problème enregistrement

2020-10-14 Thread David Robley

I think Hagar meant https://forum.openoffice.org/fr/forum/

On 15/10/20 7:19 am, Hagar Delest wrote:

This is an English speaking list.
You can find French support in the French forum : 
https://forum.openoffice.org/en/forum/


Hagar

Le 14/10/2020 à 12:55, Erwan Falc'hun a écrit :

Bonjour,

J’ai un problème pour enregistrer mes documents (nouveaux et 
existants), une erreur inconnue se produit. J’ai redémarrer mon 
appareil mais cela ne fonctionne pas.

Pouvez-vous m’aider ?

Cordialement

Provenance : Courrier<https://go.microsoft.com/fwlink/?LinkId=550986> 
pour Windows 10






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



Cheers
--
David Robley

A cynic smells flowers and looks for the casket.
 



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



Re: Open Office 4.7.1 Spell Checker

2020-10-13 Thread David Robley
Spell check generally works if properly used - see 
https://forum.openoffice.org/en/forum/viewtopic.php?f=74=16512 for 
guidance on how to get it working.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have sent a copy of this reply to you as well as to the 
mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 13/10/20 12:03 pm, Paul R. Morin wrote:

When do you plan to or do you plan to have the spell checker work on Open 
Office 4.7.1? Open Office is a great app but the spell checker doesn’t work. 
What older versions of Open Offices spell checker works when installed from the 
download?

Sent from my iPad

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



Cheers
--
David Robley

"It's two, two, two mints in one," Tom said certainly.
 



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



Re: Open Office 4.1.7

2020-10-01 Thread David Robley
Recovery problem; just select Cancel instead of Start Recovery to skip 
the recovery process.


Forum: what happens when you enter your username at the login page and 
choose forgot password? You should get an email with a link to reset the 
password. Make sure you check your spam/junk folder for the email.


Since you are not subscribed to this list you may not see all the 
replies to your query. To subscribe to Apache OpenOffice mailing lists 
go to http://openoffice.apache.org/mailing-lists.html


As a courtesy I have sent a copy of this reply to you as well as to the 
mailing list. Do Not reply to me personally but just to the list at 
 - replies to my personal email address 
will be ignored.


On 1/10/20 9:10 am, clyde wrote:

Hello,

This email is because I cannot register to the forums. After entering my user 
name and email address, a message says those are already registered. If so I 
have forgotten my password, but the system will not allow me to change the 
password.

Trying to get a new password failed also.

Have been using OOo Data Base for a couple years. It has worked fine.

OOo is 4.1.7; Operating System is Mac. 10.14.7

Recently, when I try to open OOo DB the Document Recovery window opens. It says 
“Document Untitled 1” is “not recovered yet.”

I click "Start Recovery."

Status shows "Recovery failed”

I click "Next” and the file opens.

What should I do?

Thanks for any guidance you can offer.

Sincerely,

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



Cheers
--
David Robley

Macho does not prove Mucho.
 



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



  1   2   3   >