Re: NOT OKAY

2014-10-25 Thread Larry Gusaas

On 2014-10-24, 11:17 PM Jose R R wrote:

Had not the 'curiosity' to write those words in OO until today:

Re-check:
https://pbs.twimg.com/media/B0xK0sECIAQVakq.png:large

Using default US English spell-checker that comes with 4.1.1
You should update your dictionary. Latest version, as I stated, recognizes singular and plural 
spellings.

English dictionaries for Apache OpenOffice-2014.10.01
http://extensions.openoffice.org/en/projectrelease/english-dictionaries-apache-openoffice-20141001

--
_

Larry I. Gusaas
Moose Jaw, Saskatchewan Canada
Website: http://larry-gusaas.com
An artist is never ahead of his time but most people are far behind theirs. - 
Edgard Varese



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



Re: OpenOffice lost again 6000 users (was: Improved OOXML support?)

2014-10-25 Thread Jörg Schmidt

 From: Jürgen Schmidt [mailto:jogischm...@gmail.com] 

 I believe a decision like the one in Berlin is always political
 motivated. See for example the upcoming discussion about the 
 same topic
 in Munich after changes in the administration.

You're absolutely right, but what can we do about it? 

I know reactions of the OOo community to the former situation in Freiburg, and 
there were no optimal arguments. 

I think the key would be to get involved in politically motivated questions 
those companies in the public debate, which are sponsors and supporters of AOO.

Why Companies? 
Because companies better understand the needs of business customers.



Jörg


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



ODF Plugfest #10, London, 2014-12-08/09

2014-10-25 Thread Dennis E. Hamilton
http://plugfest.opendocumentformat.org/.

An opportunity for the primary implementers of ODF to get together, explore 
some test cases, and provide a little advocacy for what the local civil 
administration authorities can count on.


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




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



review requested: [Issue 118191] Red is not red enough : [Attachment 84109] suggestion of a fix, to render the colors as defined in HTML

2014-10-25 Thread bugzilla
Regina Henschel rb.hensc...@t-online.de has asked  for review:
Issue 118191: Red is not red enough
https://issues.apache.org/ooo/show_bug.cgi?id=118191

Attachment 84109: suggestion of a fix, to render the colors as defined in HTML
https://issues.apache.org/ooo/attachment.cgi?id=84109action=edit

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



Re: Access to the list of Autofilter

2014-10-25 Thread Vladislav Stevanovic
This is the mailing list of the developers (not macro coders).
Register on the support forum:
 https://forum.openoffice.org/en/forum/ucp.php?mode=register

Andreas you're right, I am sorry about that.

Filter criteria are limited to 8 criteria.
Is it capability for Autofilter?

 No macros can not access the auto-filter list.
I am not happy for that. Thanks for information.

Andrew, thanks for your respons.

Regards,
Wlada



2014-10-25 6:26 GMT+02:00 Andrew Douglas Pitonyak and...@pitonyak.org:

 On 10/24/2014 07:06 PM, Vladislav Stevanovic wrote:

 Hello,

 Is it possible with code in Basic to access to the list of Autofilter data
 in Calc? Reason: filtering with basic is limited maximum with 3
 criteria...
 Because I need more then 3 criteria I want with basic code  to use
 filtering capability of Autofilter.

 Thanks in advance,
 Wlada

  First, Andreas is correct, you should post these types of questions to
 the forum not the Dev list.

 Second, I wrote a document called Calc As A Simple Database that is now
 part of the official LibreOffice documentation that has a macro called
 AddNewDatabaseRange that sets a range to use an autofilter.

 If you look at OOME, available from my web site, I also demonstrate how to
 create and use regular filters using macros. I expect that this is also in
 the aforementioned document.

 Sub AddNewDatabaseRange()
   Dim oRange 'DatabaseRange object.
   Dim oAddr  'Cell address range for the database range.
   Dim oSheet 'First sheet, which will contain the range.
   Dim oDoc   'Reference ThisComponent with a shorter name.

   oDoc = ThisComponent
   If NOT oDoc.DatabaseRanges.hasByName(MyName) Then
 oSheet = ThisComponent.getSheets().getByIndex(0)
 oRange = oSheet.getCellRangeByName(A1:F10)
 oAddr = oRange.getRangeAddress()
 oDoc.DatabaseRanges.addNewByName(MyName, oAddr)
   End If
   oRange = oDoc.DatabaseRanges.getByName(MyName)
   oRange.AutoFilter = True
 End Sub

 --
 Andrew Pitonyak
 My Macro Document: http://www.pitonyak.org/AndrewMacro.odt
 Info:  http://www.pitonyak.org/oo.php