Re: [libreoffice-users] using three languages in LibreOffice Writer

2011-04-14 Thread Manfred J. Krause
Hi,

regarding the second question:

On Wed, Apr 13, 2011 at 20:01, luquino wrote:
  [...]

 Another question: sometimes, when I click on others languages choice in
 the language menu, appears the window where to choose the font and effects
 instead of the languages window, why? [...]

(1)
Tools  Language  For Selection  More...
Tools  Language  For Paragraph  More...

That's direct formatting of the language attribute (for selection/paragraph).
You'll get the same window via menu Format  Character.
The Font tab includes the drop-down list Language to modify the
language attribute.

(2)
Tools  Language  For all Text  More...

That changes the default language for the document.
Usually, the Default paragraph style and all inherited styles get
the modified language attribute (see F11, Styles and Formatting
window).

It's the same window as shown via menu
Tools  Options  Language Settings  Languages  Default languages
for documents.

-- 
(
http://xkcd.com/859/

-- 
Unsubscribe instructions: E-mail to users+h...@libreoffice.org
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/www/users/
All messages sent to this list will be publicly archived and cannot be deleted


Re: [libreoffice-users] Re: Re: Re: The problem with the coding

2011-04-14 Thread Alexey Gamov
Hello! Thank you very much for your cooperation! If you find a solution, let
me know.
At the moment, sometimes helped by setting a LO Writer font Areal.
If I find an absolute solution to the problem, I'll let you know!
Good luck.

2011/4/14 lnvas ln...@data.bg

 On 2011.04.13 lnvas ln...@data.bg wrote
 ([libreoffice-users] 4264 Re: Re: Re: The problem with the coding):
  ...
  Hi, Alexey!
  I've tried on another PC-WinXP-LibO:
  - LibO: BG locale - allways OK!
  - LibO: RU locale, WinXP:
   ControlPanel  RegionalAndLanguageOptions  RegionalOptions 
 Customize:RU
  - cyrillic text from Writer(Ctr-C) into Impress(Ctr-V):
   Arial, CurierNew:   allways OK!
   Tahoma, TimesNewRoman:  allways NOT OK!
  ...

 Hi everyone concerned,

 Sorry to say that 'LibO: BG locale - allways OK!' is no more true for me.
 Either i've got confused in my tests, or something else.
 Moreover, my two PC:WinXP:LibO systems behave differently.
 Obviously, more time is needed to elaborate.
 Once again, sorry for any inconvenience!

 Regards,
 Lyudmil

 --
 Unsubscribe instructions: E-mail to users+h...@libreoffice.org
 Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
 List archive: http://listarchives.libreoffice.org/www/users/
 All messages sent to this list will be publicly archived and cannot be
 deleted


-- 
Unsubscribe instructions: E-mail to users+h...@libreoffice.org
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/www/users/
All messages sent to this list will be publicly archived and cannot be deleted



[libreoffice-users] [BASIC]: Timer() function only has resolution of 1 second

2011-04-14 Thread Jack
Hi all,
The Timer() function in basic returns the (system?) time in seconds.  Is
there another function that has a better resolution?  I want to time how
long it takes to execute a certain function in LibreOffice Basic and I would
like to have smaller increments than 1 second.  I'm talking about something
like this:

 -= Start of code =-

dim startTime as single
dim stopTime as single

startTime = Timer()
someTimeConsumingSub()
stopTime = Timer()
MsgBox It took   stopTime - startTime   second(s) to execute the code

 -= End of code =-

Typically, this would result in something like:
It took 2 second(s) to execute the code

I would like something like:
It took 1.957 second(s) to execute the code

The reason I'm using the Timer() function is because I know in VBA it works
like the second example.  Does anyone know of a function or workaround that
I can use?

Regards
Jack



--
View this message in context: 
http://nabble.documentfoundation.org/BASIC-Timer-function-only-has-resolution-of-1-second-tp2819804p2819804.html
Sent from the Users mailing list archive at Nabble.com.

-- 
Unsubscribe instructions: E-mail to users+h...@libreoffice.org
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/www/users/
All messages sent to this list will be publicly archived and cannot be deleted



Re: [libreoffice-users] [BASIC]: Timer() function only has resolution of 1 second

2011-04-14 Thread Johnny Rosenberg
tor 2011-04-14 klockan 03:23 -0700 skrev Jack:
 Hi all,
 The Timer() function in basic returns the (system?) time in seconds.  Is
 there another function that has a better resolution?  I want to time how
 long it takes to execute a certain function in LibreOffice Basic and I would
 like to have smaller increments than 1 second.  I'm talking about something
 like this:
 
  -= Start of code =-
 
 dim startTime as single
 dim stopTime as single
 
 startTime = Timer()
 someTimeConsumingSub()
 stopTime = Timer()
 MsgBox It took   stopTime - startTime   second(s) to execute the code
 
  -= End of code =-
 
 Typically, this would result in something like:
 It took 2 second(s) to execute the code
 
 I would like something like:
 It took 1.957 second(s) to execute the code
 
 The reason I'm using the Timer() function is because I know in VBA it works
 like the second example.  Does anyone know of a function or workaround that
 I can use?
 
 Regards
 Jack


GetSystemTicks()

Here's an example from the LibreOffice Help:
Sub ExampleWait
Dim lTick As Double
lTick = GetSystemTicks()
wait 2000
lTick = (GetSystemTicks() - lTick)
MsgBox   lTick   Ticks ,0,Pausen varade i
End Sub

Seems like one tick is one millisecond, at least on my system. The rest
is simple math.

-- 
Best regards

Johnny Rosenberg


-- 
Unsubscribe instructions: E-mail to users+h...@libreoffice.org
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/www/users/
All messages sent to this list will be publicly archived and cannot be deleted


[libreoffice-users] A Sort problem...

2011-04-14 Thread Zed
Using LibreOffice 3.3.1 on LinuxMint Debian Edition (LMDE) 
 
I have created a spreadsheet in Calc as a  Customer database, which I will
save as a CSV file and use to create form letters. 
 
The columns are: Firstname, Surname, Street, Town, City, Postcode,
Salutation. 
 
I originally sorted them Surname, Firstname, Town and got what I expected. 
However, somehow I have made a complete pigs ear with a subsequent sort,
and for the life of me I cannot remember the three fields on which I chose
to sort, and the Salutation field is now not aligned with the correct
surname.  For example, the customer name is Faye Abel and the Salutation
should be Dear Faye.  However it is Dear Marion! 

My question is, apart from completely retyping the correct Salutation, is
there any sort method by which i can have the correct salutation aligned
with the correct surname?

Zed
-- 
Zed
Bachelor: A guy who has cheated a woman out of a divorce.   

-- 
Unsubscribe instructions: E-mail to users+h...@libreoffice.org
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/www/users/
All messages sent to this list will be publicly archived and cannot be deleted



Re: [libreoffice-users] connection refused - download failed

2011-04-14 Thread webmaster for Kracked Press Productions

On 04/11/2011 03:53 AM, Umarzuki Mochlis wrote:

Thanks Carlo.


On 04/11/2011 03:37 PM, Carlo Strata wrote:

Hi Umarzuki,

you could try here, for example
http://ftp.heanet.ie/mirrors/tdf/libreoffice/

Have a nice day,

Carlo





try
LibreOffice-NA.US http://libreoffice-na.us/
it is not a mirror, but it has the English version, plus a few more there.



--
Unsubscribe instructions: E-mail to users+h...@libreoffice.org
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://listarchives.libreoffice.org/www/users/
All messages sent to this list will be publicly archived and cannot be deleted