Re: [users] [moderated] Something like MS Outlook ?

2006-04-04 Thread Gordon Burgess-Parker
On Monday 03 April 2006 15:10, Arthimon wrote:
 OpenOffice is new for me.
 Is it something similar with MS Oulook ?

 Regards
 Arthimon

The current version of Open Office is broadly equivalent (IMHO) to MS Office 
2002 but does NOT contain an equivalent to MS Outlook.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] bulk conversion of documents using OOo 2.0.2

2006-04-04 Thread Francis Jones

Hi All,

I have a lot of OOo documents that I want to convert into PDF.

They are all in a directory, and I would like OOo to cycle through all
the .odt files in that directory and then create .pdf files (with the
same root name).

I used to be able to do this, using 1.9.x I think.

There are a number of tutorials out there which show how to do this, and
this is what I had followed previously.  e.g., DannyB on oooforum had a
macro that worked, and you can find a similar one in Andrew Pitonyak's
macro document.  There's also a really nice gui document created by
Laurent GOdard (http://oooconv.free.fr/batchconv/batchconv_fr.html) 
which does exactly what I want.


But... in every case, I get an error, even with the macros that used to
work.


Here is the typical code:


Sub ConvertWordToPDF( cFile )
   cURL = ConvertToURL( cFile )
   
   ' Open the document.

   ' Just blindly assume that the document is of a type that OOo will
   '  correctly recognize and open -- without specifying an import filter.
   oDoc = StarDesktop.loadComponentFromURL( cURL, _blank, 0, Array(_
MakePropertyValue( Hidden, True ),_
) )


   cFile = Left( cFile, Len( cFile ) - 4 ) + .pdf
   cURL = ConvertToURL( cFile )
   
   ' Save the document using a filter.   
   oDoc.storeToURL( cURL, Array(_

MakePropertyValue( FilterName, writer_pdf_Export ),_
)
   
   oDoc.close( True )

End Sub


Function MakePropertyValue( Optional cName As String, Optional uValue ) As 
com.sun.star.beans.PropertyValue
   Dim oPropertyValue As New com.sun.star.beans.PropertyValue
   If Not IsMissing( cName ) Then
  oPropertyValue.Name = cName
   EndIf
   If Not IsMissing( uValue ) Then
  oPropertyValue.Value = uValue
   EndIf
   MakePropertyValue() = oPropertyValue
End Function 


This always seems to fail with storeToURL() failing, saying that the URL 
is of an unsupported form.


But the URLs for the incoming and outgoing files seem OK: something like

file:///C:/tmp/convOO/UW/file.odt

is an example of the incoming file.  The outgoing file would be the same 
except suffixed with .pdf instead of .odt


There seems to be something I'm missing here.  Can anybody help, or 
point out a resource for doing this?


By the Way: All of these macros which I lifted seem to have had their 
genesis in OOo 1.1 .  Does anybody know if perhaps something has changed 
in 2.0.2 that breaks things?


Thanks,

Frank Jones

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: [users] [moderated] Something like MS Outlook ?

2006-04-04 Thread Andis
Thunderbird + Calendar both on linux and windows (much better than 
outlook e-mail client and quite poor calendar application). Other 
alternative - Evolution (from gnome project), there are also attempt to 
port it to windows, but still in pre alpha stage (about the same quality 
as outlook e-mail client and good calendar application).


Andis

Arthimon wrote:
OpenOffice is new for me. 
Is it something similar with MS Oulook ?


Regards
Arthimon
  


[users] Smart Tags in OOo

2006-04-04 Thread Jonathon Coombes

Hi All,

Just wondering if anyone out there is looking at using Smart Tags  
similar to MS Word? I have a client that is interested in having them  
implemented and I am curious as to how much they would be used and in  
what situations. Can I get feedback from people please? :)


Regards
Jonathon

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] Re: Microsoft Buys OpenOffice.org! Is this true?

2006-04-04 Thread Bob Long
[CC:'d to user]
In news:[EMAIL PROTECTED],
Luke Murray [EMAIL PROTECTED] typed:
 I was going through webpages and saw this article:

 http://digg.com/software/Microsoft_Buys_OpenOffice.org_

 is it true or is it really a April Fools joke? Also would Microsoft
 even be capable of buying Openoffice.org?

http://en.wikipedia.org/wiki/April_1%2C_2006

-- 
Bob Long



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] Re: Removing a checkbox from a Writer document

2006-04-04 Thread Cor Nouws

Laurent Duperval wrote:


On Mon, 03 Apr 2006 22:34:16 +0200, Cor Nouws wrote:



Choose View|Toolbars|Form design.
There's the button Design on/of.



Aarrgh! On/Off! That's what it was! Thanks!


Well, it's something that is often not understood for the first time. So 
don't bother :-)


--
Cor Nouws
www.nouenoff.nl - www.bsooo.nl - http://nl.openoffice.org
Open. For business.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] Re: reveal codes

2006-04-04 Thread Cor Nouws

Hi Robin,

Robin Laing wrote:


Cor Nouws wrote:


Robin wrote:



 I can come up with many examples where styles don't work for me or 
other people I work with.


Then there's just no hope left for you ;-)


My wife keeps telling me that from time to time as well.  :)


She must make a mistake then ;-)

The only hope for reveal codes (I just trashed a whole thread) is 
explain how OOo dóes work, and maybe some improvements.


What I experience when training people, is that the way Word promotes 
the way of direct(character-)formatting, is the real culprit.


Greetings,

Cor




--
Cor Nouws
www.nouenoff.nl - www.bsooo.nl - http://nl.openoffice.org
Open. For business.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] OpenOfice Calc can't use basic M$ Excel formulas

2006-04-04 Thread JimboL

I tried to use formula to look for duplicate entries in the column A like
=if(countif($A$2:A2,A2)1,dupe,) 
or just to count a specific character or value in the column like
=countif(B2:B60,ABC)
both of the above don't even work but just showing #NAME?

I use Excel a lot with complex formulas like VLOOKUP, ISERROR, etc...
--
View this message in context: 
http://www.nabble.com/OpenOfice-Calc-can%27t-use-basic-M%24-Excel-formulas-t1391647.html#a3740198
Sent from the openoffice - users forum at Nabble.com.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] OpenOfice Calc can't use basic M$ Excel formulas

2006-04-04 Thread Paul
Yes it can - you just need to understand the differences between OOo and Excel.

First off, OOo uses ; to separate function components. Your formula
should therefore be :
=if(countif($A$2:A2;A2)1;dupe;)

Same with the other formula. Have a look at
documentation.openoffice.org for tutorials on calc. Even better to
read these before posting questions...

/paul

On 4/4/06, JimboL [EMAIL PROTECTED] wrote:

 I tried to use formula to look for duplicate entries in the column A like
 =if(countif($A$2:A2,A2)1,dupe,)
 or just to count a specific character or value in the column like
 =countif(B2:B60,ABC)
 both of the above don't even work but just showing #NAME?

 I use Excel a lot with complex formulas like VLOOKUP, ISERROR, etc...
 --
 View this message in context: 
 http://www.nabble.com/OpenOfice-Calc-can%27t-use-basic-M%24-Excel-formulas-t1391647.html#a3740198
 Sent from the openoffice - users forum at Nabble.com.

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] Re: Bullets problems

2006-04-04 Thread J. Magalhães Cruz
Dizia Bruce Byfield em Segunda 03 Abril 2006 18:14:
  Why are list/numbering formatting and styles separated from paragraph
  formatting and styles?

 For one thing, it's more economical that way. You can use the same
 numbering system for different paragraph styles, rather than having to
 define the design separately for each paragraph style.

 For another, it's useful to have a display of only list styles when you
 are designing a template. For example, if you plan to use nested lists,
 you usually want to define each level in terms of the next level above
 it.

I promised myself I would not engage into a discussion so soon, but I have 
to tell Bruce just this much:

- The problem Laurent Duperval raised  (have you read it?!) is paradigmatic of 
the way OOo works, and with which I disagree: «bullet/list formatting 
_interferes_ with paragraph formatting». 

- Interference is this: 
1- I have a (stylewise or not) formatted paragraph;
2- I want it to become part of a list, for instance, a numbered one;
3- I want to use a list formatting just for taking care of the list 
itself 
(following paragraphs have following numbers, for instance)
4- I do not want the list formatting to change paragraph formatting 
(indentation, for instance)
5- I can not achieve this easily with OOo.

- Your arguments do not answer this issue. 
But you could have a point _if_ there was a _parallel_ between 
paragraph/character formatting and paragraph/list formatting (in both cases, 
stylewise or not). Unfortunately, OOo does not enforce such 
parallelism! :-(

Regards, 
José (still using OOo...)

-- 
J. Magalhães Cruz   --- [EMAIL PROTECTED] ---

... free, as in freedom... (Richard Stallman)
... private, as in personal... (jmcruz)
... respect, to all animals... (jmcruz)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] Labels in 2.x not working

2006-04-04 Thread TAC Forums
Hi

I used to use Lables in 1.x without any problems. But for some reason
it does not appear to be working in 2.x

Do others share the same experience?

Regards
--
TAC Support Team

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] Re: Bullets problems

2006-04-04 Thread Cor Nouws

Hi José,

J. Magalhães Cruz wrote:


- Interference is this: 
	1- I have a (stylewise or not) formatted paragraph;

2- I want it to become part of a list, for instance, a numbered one;
	3- I want to use a list formatting just for taking care of the list itself 
(following paragraphs have following numbers, for instance)
	4- I do not want the list formatting to change paragraph formatting 
(indentation, for instance)

5- I can not achieve this easily with OOo.



Take some paragraphs that need numbering.
Now you can do two things:

a) select te paragraphs and choose a numbering style from the stylist;
b) select te paragraphs and apply a paragraph style, to which you 
applied a numbering style on the tab Numbering;


That's pretty straight forward.

If you do not like the numbering style, you can choose one of the 
others, change the current, or define your own.


The only way to change the indentation of the parapraph via the numering 
style, is setting the distance on the tab position of the numbering 
style. The first level of the 10 default numbering/listing styles, all 
have no extra distance from left.


Greetings,
Cor


--
Cor Nouws
www.nouenoff.nl - www.bsooo.nl - http://nl.openoffice.org
Open. For business.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] Windows with and without JRE

2006-04-04 Thread Derek J. Carr

Dave Barton wrote:


On Tue, 2006-04-04 at 03:40 +, [EMAIL PROTECTED] wrote:
 


Please tell me what JRE is.  How would I find out if my version of Windows has 
this?

My OS is Windows XP Professional with the current recommended updates (Express).  


Thanks for your help.

Charles Smart
   



Start menu, select Run, then in the dialog box type cmd (without
quotation marks) and click OK button. In the window that opens type
java -version (without quotation marks). If you see something that
includes the phrase Java(TM) 2 Runtime Environment, you have a version
of Java installed. Ideally, you should have Java version 1.5.0_06
installed. If not, then download the version of OOo (OpenOffice.org)
with JRE.

Hope this helps.

Dave
 

I have JRE version 1.5.0_04. What is the difference with the extra 2 points and do I really need this update? 


--
With best regards, Derek Carr,
Birmingham, UK
http://alldruid.co.uk/

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] Windows with and without JRE

2006-04-04 Thread Dave Barton
On Tue, 2006-04-04 at 12:30 +0100, Derek J. Carr wrote:
 Dave Barton wrote:
 
 On Tue, 2006-04-04 at 03:40 +, [EMAIL PROTECTED] wrote:
   
 
 Please tell me what JRE is.  How would I find out if my version of Windows 
 has this?
 
 My OS is Windows XP Professional with the current recommended updates 
 (Express).  
 
 Thanks for your help.
 
 Charles Smart
 
 
 
 Start menu, select Run, then in the dialog box type cmd (without
 quotation marks) and click OK button. In the window that opens type
 java -version (without quotation marks). If you see something that
 includes the phrase Java(TM) 2 Runtime Environment, you have a version
 of Java installed. Ideally, you should have Java version 1.5.0_06
 installed. If not, then download the version of OOo (OpenOffice.org)
 with JRE.
 
 Hope this helps.
 
 Dave
   
 
 I have JRE version 1.5.0_04. What is the difference with the extra 2
 points and do I really need this update? 
 
 --
  With best regards, Derek Carr,
  Birmingham, UK
  http://alldruid.co.uk/

No I don't believe you need to update. I don't know the details of the 2
point difference, but I very much doubt that it is important in regard
to the functionality of OOo. I recommended _06 to the OP as the ideal,
because that is the current JRE version included in the OOo 2.0.2
package.

Regards Dave
Ex. Birmingham, UK


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] Re: Windows with and without JRE

2006-04-04 Thread Grzegorz Wiktorowski
 No I don't believe you need to update. I don't know the details of the 2
 point difference, but I very much doubt that it is important in regard
 to the functionality of OOo. I recommended _06 to the OP as the ideal,
 because that is the current JRE version included in the OOo 2.0.2
 package.

JRE 5.0 Update 6 is important in regard to the *security*.

-- 
Grzegorz Wiktorowski 



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] Re: Reveal Codes

2006-04-04 Thread klaus schmirler

Rod Engelsman wrote:

Honestly, I think I would call this a bug. In fact I'm going to file an 
issue on it if there isn't one already and see what the developers have 
to say about it.




Please give the number. I don't think I have any votes left in that 
category, but I'd like to see what happens. Given what Jallan wrote 
about the more logical behaviour with colors (which I never use, so I 
hadn't noticed) it is a bug.


Anyone still wondering why there are people who want to see where any 
given type of formatting comes from?


klaus

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] Re: Reveal Codes

2006-04-04 Thread Cor Nouws

klaus schmirler wrote:


Rod Engelsman wrote:

Honestly, I think I would call this a bug. In fact I'm going to file 
an issue on it if there isn't one already and see what the developers 
have to say about it.




Please give the number. I don't think I have any votes left in that 
category, but I'd like to see what happens. Given what Jallan wrote 
about the more logical behaviour with colors (which I never use, so I 
hadn't noticed) it is a bug.


Anyone still wondering why there are people who want to see where any 
given type of formatting comes from?


I don't think it is a bug.

If I paste text with character-formatting in paragraph (with of course a 
style), it is logic that the pasted text has character-formatting.

If I want to paste without formatting, I choose 'Paste Special'.

And if I need to get rid of unwnated formatting (mostly in others work) 
I choose Format|Default. Removes all direct formatting.

Easy enough.

Greetings,
Cor




klaus

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






--
Cor Nouws
www.nouenoff.nl - www.bsooo.nl - http://nl.openoffice.org
Open. For business.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] Re: Windows with and without JRE

2006-04-04 Thread Dave Barton
On Tue, 2006-04-04 at 14:30 +0200, Grzegorz Wiktorowski wrote:
  No I don't believe you need to update. I don't know the details of the 2
  point difference, but I very much doubt that it is important in regard
  to the functionality of OOo. I recommended _06 to the OP as the ideal,
  because that is the current JRE version included in the OOo 2.0.2
  package.
 
 JRE 5.0 Update 6 is important in regard to the *security*.

Noted, thank you.

Dave


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] bulk conversion of documents using OOo 2.0.2

2006-04-04 Thread G. Roderick Singleton
Please do *not* start a new question by replying to an old one as this
causes several problems:
 1. most email software will correctly think that your email is a
response to the email you are replying to, and will indicate
this by displaying your email as a child of the original email
 2. because of this, people not interested in the original email may
ignore your question
 3. people may think that the original email has a reply(yours) so
that they do not have to give it a reply

So in conclusion, more people will read your email if it looks like the
start of a new thread rather than the reply to an old one.

On Tue, 2006-04-04 at 14:34 +0800, Francis Jones wrote:
 Hi All,
 
 I have a lot of OOo documents that I want to convert into PDF.
 
 They are all in a directory, and I would like OOo to cycle through all
 the .odt files in that directory and then create .pdf files (with the
 same root name).
 
 I used to be able to do this, using 1.9.x I think.
 
 There are a number of tutorials out there which show how to do this, and
 this is what I had followed previously.  e.g., DannyB on oooforum had a
 macro that worked, and you can find a similar one in Andrew Pitonyak's
 macro document.  There's also a really nice gui document created by
 Laurent GOdard (http://oooconv.free.fr/batchconv/batchconv_fr.html) 
 which does exactly what I want.
 
 But... in every case, I get an error, even with the macros that used to
 work.
 
 
 Here is the typical code:
 
  Sub ConvertWordToPDF( cFile )
 cURL = ConvertToURL( cFile )
 
 ' Open the document.
 ' Just blindly assume that the document is of a type that OOo will
 '  correctly recognize and open -- without specifying an import filter.
 oDoc = StarDesktop.loadComponentFromURL( cURL, _blank, 0, Array(_
  MakePropertyValue( Hidden, True ),_
  ) )
  
  
 cFile = Left( cFile, Len( cFile ) - 4 ) + .pdf
 cURL = ConvertToURL( cFile )
 
 ' Save the document using a filter.   
 oDoc.storeToURL( cURL, Array(_
  MakePropertyValue( FilterName, writer_pdf_Export ),_
  )
 
 oDoc.close( True )
  End Sub
  
  
  Function MakePropertyValue( Optional cName As String, Optional uValue ) As 
  com.sun.star.beans.PropertyValue
 Dim oPropertyValue As New com.sun.star.beans.PropertyValue
 If Not IsMissing( cName ) Then
oPropertyValue.Name = cName
 EndIf
 If Not IsMissing( uValue ) Then
oPropertyValue.Value = uValue
 EndIf
 MakePropertyValue() = oPropertyValue
  End Function 
 
 This always seems to fail with storeToURL() failing, saying that the URL 
 is of an unsupported form.
 
 But the URLs for the incoming and outgoing files seem OK: something like
 
 file:///C:/tmp/convOO/UW/file.odt
 
 is an example of the incoming file.  The outgoing file would be the same 
 except suffixed with .pdf instead of .odt
 
 There seems to be something I'm missing here.  Can anybody help, or 
 point out a resource for doing this?
 
 By the Way: All of these macros which I lifted seem to have had their 
 genesis in OOo 1.1 .  Does anybody know if perhaps something has changed 
 in 2.0.2 that breaks things?
 

This question is better suited to the dev@api.openoffice.org list. You
should ask there.  Off the top of my head, though, I think you are using
the wrong call and there is better choice than storeToURL. 
-- 
PLEASE KEEP MESSAGES ON THE LIST.
OpenOffice.org Documentation Co-Lead
http://documentation.openoffice.org/ 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] Document as Email Problem

2006-04-04 Thread Steven Cox
On Tue, 04 Apr 2006 01:49:06 -0400, Craig Stevens  
[EMAIL PROTECTED] wrote:



In  OOo i send a document as an email and the Choose Profile dialog

box always appears,


I don't get this with Outlook 2003. However I'm setup to get my mail via a  
POP server, I think if you're using Exchange or if Outlook is incorrectly  
configured it might do this.


What version of Outlook are you using?

Display all headersDate: Tue, 04 Apr 2006 01:49:06 -0400
From: Craig Stevens [EMAIL PROTECTED]
To: users@openoffice.org
Subject: RE: [users] Document as Email Problem
Reply-To: users@openoffice.org

Thanks for the suggest Paul, but the Admin guy is confident its not a
config with outlook, he suggests registry setting and that outlook has a
bug which wont set the default hence the form re-appears. I don't know,
its easy for someone to speculate but I would prefer something more
tangible to an answer. If any thoughts still happy to hear them.

Craig

-Original Message-
From: Paul [mailto:[EMAIL PROTECTED]
Sent: Thursday, 30 March 2006 1:51 PM
To: users@openoffice.org; Craig Stevens
Subject: Re: [users] Document as Email Problem


I had similar issue when I was working for another company, but with the
existing company I don't have that issue. Both companies were using
Outlook, and I used OOo with both.  It probably has something to do with
the way Outlook (from an admin) perspective is configured.

Sorry couldn't be of more assistance.

/paul

On 3/30/06, Craig Stevens [EMAIL PROTECTED] wrote:

Hi all,
 In  OOo i send a document as an email and the Choose Profile dialog 
box always appears, i select OPTIONS and SET AS DEFAULT PROFILE buteach  
time i send a new document as an email the dialog box re-appearswihtout  
the SET DEFAULT PROFILE checked. I am using OOo 2.0 andOutlook 2000 with  
SR-1, SP2, SP3 installed on Windows XP. My issue isi cant determine if  
this is a problem with OOo or the outlook mailsettings. Has anyone  
experienced this issue and have solution to it?

 Craig



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

--
Message protected by MailGuard: e-mail anti-virus, anti-spam and content
filtering. http://www.mailguard.com.au



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


--
Steven Cox
Mectek - Inetprime
www.inetprime.net

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] Calc mystery

2006-04-04 Thread lists . oo-users
Hallo OO users,

I have a very weird problem.
On my box I have two Linux systems. Both SlackWare 10.2, glibc 2.1,
xorg 6.8.2, kde 3.4.2, OO 2.0.2.
One system is my working system, the other a spare.
On the spare system some calc spreadsheets are not displayed correctly:
colums far too wide [more than a screen width] and rows too low. But THE
SAME speardsheets [I mean the same physical location] look perfect on
the working system.
I tried reinstalling and I tried copying the whole OO tree from the
working system, without any luck.
What might cause this?

Groetjes,

   Hans.

jdh punt beekhuizen bij duinheks punt xs4all punt nl

--- GoldED+/LNX 1.1.5/060315
 * Origin: The Wizard is using MBSE/Linux (2:280/1018)

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] Re: oooDraw: word wrap text resize shape to fit text

2006-04-04 Thread Kjell Lindbo
You have probably not created a shape but a plain rectangle or polygon.  I 
do not think these options are available for them. Try creating your 
polygons from the basic shapes or the flowchart buttons in the drawing 
toolbar and you will be allowed to do word wrap etc

Kjell



Vincente Aggrippino [EMAIL PROTECTED] wrote in message 
news:[EMAIL PROTECTED]
This seems like it should be an easy one, but I must be missing something.

I am trying to create a relatively simple flowchart using
OpenOffice.orgDraw.  For each object that I create, I want to Word
wrap text in shape
and Resize shape to fit text.  However, these options are unavailable
(grayed-out).

What am I doing wrong?

Thank you,
Vince Aggrippino



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] Re: Lotus-Smartsuite-Files

2006-04-04 Thread R N D Martin
In article [EMAIL PROTECTED], [EMAIL PROTECTED] 
(Ennio-Sr) wrote:

 *From:* Ennio-Sr [EMAIL PROTECTED]
 *Date:* Mon, 3 Apr 2006 00:23:31 +0200
 
 * Peter Krueger [EMAIL PROTECTED] [020406, 18:10]:
  Hello,
  
  I'm using Open Office Org 2.0 with Windows and Linux. Before I used 
  Lotus Smartsuite with Windows. Can you tell me if there exists any 
  import filters for importing Lotus-1-2-3, Lotus-Freelance and 
  Lotus-Wordpro files into Open Office Org. If there exists any would 
  you please tell me where I can find them.
  
 
 Hi Peter!
 Concerning Lotus .123 files, I imported them in OOo-1.1.4 following
 these steps:
 1. Savev .123 files as .xls (Excel) files (using Lotus SSuite) 
 2. OOo-1.1.4 could open the so transformed .xls files, except that I 
 had
to re-write all the relative macros and make some minor adaptations
to particular formulas (Help was very 'helpful' ;-) )
 
 I've just tried OOo-2.0, which supposedly should import .123 files
 directly, but had no success: many of my formulas would raise the
 _#VALUE_ error and the resulting files are worthless. What is worse,
 OOo-2.0 gives the same error when I try to import the former .123 
 files
 previously successfully transformed in OOo-1.1.4 Calc (.sxc) files.
   
 HTH, regards,
   Ennio.
   
 --
 [Perche' usare Win$ozz (dico io) se ...anche uno sciocco sa farlo.   
 \\?//
  Fa' qualche cosa di cui non sei capace!  (diceva Henry Miller) ]
 (°|°)
 [Why use Win$ozz (I say) if ... even a fool can do that. 
  )=(
  Do something you aren't good at! (as Henry Miller used to say) ]
 
OO.o will import lotus 123 files directly without that workaround, but 
sadly will not  do the same  for wordpro.

Niall Martin

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] bulk conversion of documents using OOo 2.0.2

2006-04-04 Thread Francis Jones

Noted,  thanks for the advice.

G. Roderick Singleton wrote:

Please do *not* start a new question by replying to an old one as this
causes several problems:
 1. most email software will correctly think that your email is a
response to the email you are replying to, and will indicate
this by displaying your email as a child of the original email
 2. because of this, people not interested in the original email may
ignore your question
 3. people may think that the original email has a reply(yours) so
that they do not have to give it a reply

So in conclusion, more people will read your email if it looks like the
start of a new thread rather than the reply to an old one.

On Tue, 2006-04-04 at 14:34 +0800, Francis Jones wrote:

Hi All,

I have a lot of OOo documents that I want to convert into PDF.

They are all in a directory, and I would like OOo to cycle through all
the .odt files in that directory and then create .pdf files (with the
same root name).

I used to be able to do this, using 1.9.x I think.

There are a number of tutorials out there which show how to do this, and
this is what I had followed previously.  e.g., DannyB on oooforum had a
macro that worked, and you can find a similar one in Andrew Pitonyak's
macro document.  There's also a really nice gui document created by
Laurent GOdard (http://oooconv.free.fr/batchconv/batchconv_fr.html) 
which does exactly what I want.


But... in every case, I get an error, even with the macros that used to
work.


Here is the typical code:


Sub ConvertWordToPDF( cFile )
   cURL = ConvertToURL( cFile )
   
   ' Open the document.

   ' Just blindly assume that the document is of a type that OOo will
   '  correctly recognize and open -- without specifying an import filter.
   oDoc = StarDesktop.loadComponentFromURL( cURL, _blank, 0, Array(_
MakePropertyValue( Hidden, True ),_
) )


   cFile = Left( cFile, Len( cFile ) - 4 ) + .pdf
   cURL = ConvertToURL( cFile )
   
   ' Save the document using a filter.   
   oDoc.storeToURL( cURL, Array(_

MakePropertyValue( FilterName, writer_pdf_Export ),_
)
   
   oDoc.close( True )

End Sub


Function MakePropertyValue( Optional cName As String, Optional uValue ) As 
com.sun.star.beans.PropertyValue
   Dim oPropertyValue As New com.sun.star.beans.PropertyValue
   If Not IsMissing( cName ) Then
  oPropertyValue.Name = cName
   EndIf
   If Not IsMissing( uValue ) Then
  oPropertyValue.Value = uValue
   EndIf
   MakePropertyValue() = oPropertyValue
End Function 
This always seems to fail with storeToURL() failing, saying that the URL 
is of an unsupported form.


But the URLs for the incoming and outgoing files seem OK: something like

file:///C:/tmp/convOO/UW/file.odt

is an example of the incoming file.  The outgoing file would be the same 
except suffixed with .pdf instead of .odt


There seems to be something I'm missing here.  Can anybody help, or 
point out a resource for doing this?


By the Way: All of these macros which I lifted seem to have had their 
genesis in OOo 1.1 .  Does anybody know if perhaps something has changed 
in 2.0.2 that breaks things?




This question is better suited to the dev@api.openoffice.org list. You
should ask there.  Off the top of my head, though, I think you are using
the wrong call and there is better choice than storeToURL. 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: [users] Windows with and without JRE

2006-04-04 Thread Dan Lewis
On Monday April 3 2006 10:40 pm, [EMAIL PROTECTED] wrote:
 Please tell me what JRE is.  How would I find out if my version of
 Windows has this?

 My OS is Windows XP Professional with the current recommended updates
 (Express).

 Thanks for your help.

 Charles Smart

JRE is Java Runtime Environment. It is required if you are going to be 
using any of OpenOffice.org's wizards, or database (Base). If you are 
going to be creating slide shows, JRE would be advisable.
 I would recommend selecting the Windows (with JRE) in the Operating 
System (O/S) drop down box. Windows is your O/S. The (with JRE) means 
that the file you download will contain both the Window's version of OOo 
and JRE. The (without JRE) means the downloaded file only contains OOo.

Dan

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] open office writer to microsoft word

2006-04-04 Thread Johnny Andersson

Den 2006-04-03 22:35:57 skrev Cor Nouws [EMAIL PROTECTED]:


Hi Raymond,

Raymond Anthony wrote:

If I attached an open office writer file to an e-mail can it be opened  
by a user of microsoft wod, by clicking file and open commands only?


People that do not (yet) have OOo, you'll have to send .doc (File|Save  
as) or pdf-files (File|Export to PDF).


PDF??? I didn't know that you can open those with M$ Word. Maybe I should  
skip OOo and go back to M$ Office again, then...   ;)



Johnny

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] Labels in 2.x not working

2006-04-04 Thread Peter Hillier-Brook

TAC Forums wrote:

Hi

I used to use Lables in 1.x without any problems. But for some reason
it does not appear to be working in 2.x

Do others share the same experience?

Regards
--
TAC Support Team


Labels are fine in 2.0.2. Would you like to elaborate?

Peter HB

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] Re: oooDraw: word wrap text resize shape to fit text

2006-04-04 Thread Vincente Aggrippino
On 4/4/06, Kjell Lindbo [EMAIL PROTECTED] wrote:

 You have probably not created a shape but a plain rectangle or polygon.  I
 do not think these options are available for them. Try creating your
 polygons from the basic shapes or the flowchart buttons in the drawing
 toolbar and you will be allowed to do word wrap etc


That was exactly it ...  That's odd.  I  can create two  rectangles  in  a
document that seem identical, but only one allows me to wrap.

Thanks,
Vince

Kjell



 Vincente Aggrippino [EMAIL PROTECTED] wrote in message
 news:[EMAIL PROTECTED]
 This seems like it should be an easy one, but I must be missing something.

 I am trying to create a relatively simple flowchart using
 OpenOffice.orgDraw.  For each object that I create, I want to Word
 wrap text in shape
 and Resize shape to fit text.  However, these options are unavailable
 (grayed-out).

 What am I doing wrong?

 Thank you,
 Vince Aggrippino



 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




Re: [users] Labels

2006-04-04 Thread Richard Robbins
It might.  Where and how can I get it?

- Original Message - 
From: Peter Hillier-Brook [EMAIL PROTECTED]
To: users@openoffice.org
Sent: Saturday, April 01, 2006 2:37 PM
Subject: Re: [users] Labels


 Richard Robbins wrote:
  I can do form letters just fine but when it comes to labels, the same
things don't work.  The Synchronize button fails to populate the label
document.  So I'm stuck with only the document with the field names and
whatever other info I have typed in.

 Would my tutorial help? Half a meg in size.

 Peter HB

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] [moderated]

2006-04-04 Thread B Cole
When I go to view an email that uses Power Point Viewer, it opens in Open 
Office and I do not want it to be the default for Power Point.  How do I change 
that? 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] I am using version 2.0 of Open Office and my problem is how to change the defaults

2006-04-04 Thread B Cole
When I open an email using Power Point Viewer, it opens in Open Office.  I do 
not want it too.  How do I change that default so it will open in Plain Power 
Point? 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] Re: Reveal Codes

2006-04-04 Thread Jallan

Cor Nouws wrote:


I don't think it is a bug.

If I paste text with character-formatting in paragraph (with of course a 
style), it is logic that the pasted text has character-formatting.

If I want to paste without formatting, I choose 'Paste Special'.


Quite reasonable.

But making an exception for the default paragraph character style is not 
so reasonable, especially if you are working with text in a number of 
different formats adjoining each other, for example dictionary entries 
or grammatical text.


There bold, italic, and roman text commonly touch one another. After 
all, spaces also must be one of these three.


It is annoying when pasting mixed material of this sort into other mixed 
material to see your normal roman text suddenly become italicized or 
bold, not retaining its necessary character-formatting, not following 
your reasonable logic, but following a more complex logic.


It's nice to know now I could have avoid this unpleasantness by the 
kludge of setting my default paragraph font to something like Algerian 
and then just using direct formatting instead to paste over it. But I 
really shouldn't be encouraged into a kludge like that.


And if I need to get rid of unwnated formatting (mostly in others work) 
I choose Format|Default. Removes all direct formatting.

Easy enough.


But the difficulty is that the changing of text in the normal paragraph 
font style into bold and italic was unwanted formatting. Yes, I can get 
rid of the unwanted, automatic, formatting changes of my normal text to 
bold or italic by selecting each such section and applying Format-Default.


If only OOo Writer had followed your logic and the formatting had indeed 
been left alone when I pasted.


Increasingly I found myself using Paste Special, not to paste without 
formatting, but to paste *with* formatting, using the RTF option and 
then removing the extra paragraph it inserts, just to keep the 
formatting I wanted.


I can see the logic of considering the default character attributes in a 
paragraph style as sort of a background text style, to be treated 
specially.


But I don't think it was a good idea to follow that particular logic. I 
prefer the logic you first indicated: pasting defaults to retaining 
formatting, and would prefer that being the rule in all circumstances.


Jallan



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] Oo and printers

2006-04-04 Thread Jim Patterson
I have been running into a problem with documents not going to the 
default printer.  In cups I have the default printer set to PrinterA, 
but whenever I start to print it prints to PrinterB.  I check in printer 
setup and it indicates that the default printer is PrinterB.  If I reset 
it here and print then it will print to PrinterA, but the next document 
I open then it's back to printing to PrinterB.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] Oo and printers

2006-04-04 Thread Jim Patterson
I have been running into a problem with documents not going to the 
default printer.  In cups I have the default printer set to PrinterA, 
but whenever I start to print it prints to PrinterB.  I check in printer 
setup and it indicates that the default printer is PrinterB.  If I reset 
it here and print then it will print to PrinterA, but the next document 
I open then it's back to printing to PrinterB.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] OO 2.0.2 on linux (FC5) slow under KDE

2006-04-04 Thread Chris Jones
Hi, 
 
 I'm running Fedora Core 5 and run the KDE desktop. Previously I have run 
other FC releases and OO has run just fine under KDE. However, with the 
latest FC5 version of )) (2.0.2) I have observed that OO causes KDE to run 
slowly, and runs slowly itself. Observerations I have made are 
 
 1. OO runs fine under gnome 
 2. Under KDE, the icons are different and generally the application is a lot 
less responsive. 
 3. Under some circumstances, such as when using impress and have a text box 
highlighted (i.e. with a grey box outline around it). Somehow OO causes the 
KDE desktop itself to become VERY slow (many seconds for menus to appear, 
whereas without OO running there are no delays). 
 
 I strongly suspect the KDE integration in this release is not working well. 
Has anyone else observed similar problems ? 
 
 Is there any way I can disable the KDE integration for tests ? 
 
 Chris

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] Oo and printers

2006-04-04 Thread Cor Nouws

Hi Jim,

Jim Patterson wrote:

I have been running into a problem with documents not going to the 
default printer.  In cups I have the default printer set to PrinterA, 
but whenever I start to print it prints to PrinterB.  I check in printer 
setup and it indicates that the default printer is PrinterB.  If I reset 
it here and print then it will print to PrinterA, but the next document 
I open then it's back to printing to PrinterB.


Could it be the following:
The printer name is kept in the template.
So if you change your default template to link to printerA, that will 
work for new docs.


Greetings,
Cor


--
Cor Nouws
www.nouenoff.nl - www.bsooo.nl - http://nl.openoffice.org
Open. For business.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] Labels

2006-04-04 Thread Peter Hillier-Brook

Richard Robbins wrote:

It might.  Where and how can I get it?


It's presently on my web site:

http://www.hbsys.co.uk/openoffice/

Peter HB

[cut]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [users] Calc vs. Excel

2006-04-04 Thread Kirill S. Palagin
Can you post an example somewhere on the web?

P.S. You do not _have_ to use latest Office. Use what you already have.

 -Original Message-
 From: Jerry Biggerstaff [mailto:[EMAIL PROTECTED] 
 Sent: Friday, March 31, 2006 5:15 AM
 To: users@openoffice.org
 Subject: [users] Calc vs. Excel
 
 Open Office Calc is opening Excel 2000 files with some of the 
 numbers importing as lables (Format of cell in Calc  is '10). 
 When I open the same file in Excel, the ( ' ) is missing in 
 the same cell. I have been trying to get away from Excel but 
 this problem has me stumped and stopped.
 
 Just removed 2.0.1xx and installed 2.0.2. Same problem.
 
 Any ideas are welcome as I am retired and on a very limited 
 budget and M$ has priced the latest Excel/office out of my budget.
 
 If allowed, please reply directly to my personal email. If 
 not allowed, please let me know how to get any answers to my question.
 
 Thanks,
 Jerry B
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED] For 
 additional commands, e-mail: [EMAIL PROTECTED]
 
 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] [moderated] - UNSUBSCRIBE

2006-04-04 Thread rjschmid
PLEASE UNSUBSCRIBE

-Original Message-
From: Lars D. Noodén [EMAIL PROTECTED]
Sent: Apr 4, 2006 11:47 AM
To: Melody Rhodes [EMAIL PROTECTED]
Cc: users@openoffice.org
Subject: Re: [users] [moderated]

Hi, Melody,

Yes.  You do have to download the whole package.

Two useful things to know about Impress are that in addition to being able 
to do powerpoint you can also export them to flash or PDF.

On Mon, 3 Apr 2006, Melody Rhodes wrote:
 ... Do I have to download the entire openoffice program, or can I just 
 do the impress program separate? And am I correct in assuming that this 
 is what works with powerpoint and is interchangable with it? ...

-Lars
Lars Noodén ([EMAIL PROTECTED])
   Patents are wrong for software but right for inventions. Write:
 http://wwwdb.europarl.eu.int/ep6/owa/p_meps2.repartition?ilg=EN

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] Allgemeine Anfrage

2006-04-04 Thread CPHennessy
On Tue April 4 2006 14:55, + Kornelia  Andreas Weihmann wrote:
  [ MODERATED ] 
 Ist es geplant, im OOo mal ein Kalender-Modul für Termine, Aufgaben usw.
 mit Erinnerungsfunktion zu integrieren?

 Vielen Dank für eine Antwort im voraus!

This list is generally an English only mailing list. If you would like to 
communicate in your own language then please have a look at 
http://de.openoffice.org - Mailing list or email [EMAIL PROTECTED]

Please reply to users@openoffice.org only

-- 
CPH : openoffice.org contributor

Maybe your question has been answered already?
http://user-faq.openoffice.org/#FAQ

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] OO 2.0.2 on linux (FC5) slow under KDE

2006-04-04 Thread CPHennessy
On Tue April 4 2006 19:05, Chris Jones wrote:
 Hi,

  I'm running Fedora Core 5 and run the KDE desktop. Previously I have run
 other FC releases and OO has run just fine under KDE. However, with the
 latest FC5 version of )) (2.0.2) I have observed that OO causes KDE to run
 slowly, and runs slowly itself. Observerations I have made are

  1. OO runs fine under gnome
  2. Under KDE, the icons are different and generally the application is a
 lot less responsive.
  3. Under some circumstances, such as when using impress and have a text
 box highlighted (i.e. with a grey box outline around it). Somehow OO
 causes the KDE desktop itself to become VERY slow (many seconds for menus
 to appear, whereas without OO running there are no delays).

  I strongly suspect the KDE integration in this release is not working
 well. Has anyone else observed similar problems ?

  Is there any way I can disable the KDE integration for tests ?

Hi Chris,
 I suspect that it may be RedHats build that is the problem. 
Can you download and try the version of OOo from http://openoffice.org ?


-- 
CPH : openoffice.org contributor

Maybe your question has been answered already?
http://user-faq.openoffice.org/#FAQ

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] Re: Reveal Codes

2006-04-04 Thread Cor Nouws

Hi Jallan,

Jallan wrote:


Cor Nouws wrote:


I don't think it is a bug.

If I paste text with character-formatting in paragraph (with of course 
a style), it is logic that the pasted text has character-formatting.

If I want to paste without formatting, I choose 'Paste Special'.



Quite reasonable.

But making an exception for the default paragraph character style is not 
so reasonable, especially if you are working with text in a number of 
different formats adjoining each other, for example dictionary entries 
or grammatical text.


I didn't notice an exeption for the default paragraph style.
Every paragraph style (well, I only tried six ;-) has the same behaviour.
When pasted, direct formatting (be it by Ctrl-B or character styles) the 
formatting is included.
When text without direct formatting is pasted, it gets the formatting of 
where it is placed.




There bold, italic, and roman text commonly touch one another. After 
all, spaces also must be one of these three.


It is annoying when pasting mixed material of this sort into other mixed 
material to see your normal roman text suddenly become italicized or 
bold, not retaining its necessary character-formatting, not following 
your reasonable logic, but following a more complex logic.


Maybe not handy, that's true. But I may hope that pasting text with 
direct formatting in clean paragraphs, is more common than the other way 
round.




It's nice to know now I could have avoid this unpleasantness by the 
kludge of setting my default paragraph font to something like Algerian 
and then just using direct formatting instead to paste over it. But I 
really shouldn't be encouraged into a kludge like that.


Sorry, can't see what's kludgy. As long as you work with paragraph 
styles whenever possible. See above.




And if I need to get rid of unwnated formatting (mostly in others 
work) I choose Format|Default. Removes all direct formatting.

Easy enough.



But the difficulty is that the changing of text in the normal paragraph 
font style into bold and italic was unwanted formatting. Yes, I can get 
rid of the unwanted, automatic, formatting changes of my normal text to 
bold or italic by selecting each such section and applying Format-Default.


If only OOo Writer had followed your logic and the formatting had indeed 
been left alone when I pasted.


I do not understand what you mean with my logic. I work with Writer's 
logic, and tried to explain that.



Increasingly I found myself using Paste Special, not to paste without 
formatting, but to paste *with* formatting, using the RTF option and 
then removing the extra paragraph it inserts, just to keep the 
formatting I wanted.


Looks as if you are working in a style-unfriendly environment ;-)


I can see the logic of considering the default character attributes in a 
paragraph style as sort of a background text style, to be treated 
specially.


But I don't think it was a good idea to follow that particular logic. I 
prefer the logic you first indicated: pasting defaults to retaining 
formatting, and would prefer that being the rule in all circumstances.


I could live with your rule as well. But I think pasting text without 
direct formatting adapts to the place where pasted, is easier than that 
it doesn't adapt. That would influence every paste action.


Greetings,
Cor



--
Cor Nouws
www.nouenoff.nl - www.bsooo.nl - http://nl.openoffice.org
Open. For business.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] OO 2.0.2 on linux (FC5) slow under KDE

2006-04-04 Thread Chris Jones

  I suspect that it may be RedHats build that is the problem.
 Can you download and try the version of OOo from http://openoffice.org ?

Hi,

I tried, but all I get is

[EMAIL PROTECTED] /data/download/OO/OOB680_m5_native_packed-1_en-US.9011/RPMS 
 /opt/openoffice.org2.0/program/simpress
no suitable windowing system found, exiting.

?

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] Allgemeine Anfrage

2006-04-04 Thread Kornelia Andreas Weihmann
Ist es geplant, im OOo mal ein Kalender-Modul für Termine, Aufgaben usw. mit 
Erinnerungsfunktion zu integrieren?

Vielen Dank für eine Antwort im voraus!

Mit freundlichen Grüßen

Andreas Weihmann


Re: [users] OO 2.0.2 on linux (FC5) slow under KDE

2006-04-04 Thread Chris Jones
=
 [EMAIL PROTECTED]
 /data/download/OO/OOB680_m5_native_packed-1_en-US.9011/RPMS

  /opt/openoffice.org2.0/program/simpress

 no suitable windowing system found, exiting.

 ?

I should add - running from gnome via the desktop menu icon also does not work

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] OO 2.0.2 on linux (FC5) slow under KDE

2006-04-04 Thread G. Roderick Singleton
On Tue, 2006-04-04 at 21:14 +0100, Chris Jones wrote:
 /data/download/OO/OOB680_m5_native_packed-1_en-US.9011/RPMS

And you have
installed 
/data/download/OO/OOB680_m5_native_packed-1_en-US.9011/RPMS/desktop-integration/openoffice.org-redhat-menus-2.0.2-3.noarch.rpm
-- 
PLEASE KEEP MESSAGES ON THE LIST.
OpenOffice.org Documentation Co-Lead
http://documentation.openoffice.org/ 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] [moderated] Can it convert .ess spreadsheet files

2006-04-04 Thread Lois Eiler


[users] Open Office for Mac OS-X 10.2.8

2006-04-04 Thread Backstage
how to get an OpenOffice version for Mac Powerbook G3 with OS-X 10.2.8?

Re: [users] OO 2.0.2 on linux (FC5) slow under KDE

2006-04-04 Thread Chris Jones
On Tuesday 04 April 2006 9:24 pm, G. Roderick Singleton wrote:
 On Tue, 2006-04-04 at 21:14 +0100, Chris Jones wrote:
  /data/download/OO/OOB680_m5_native_packed-1_en-US.9011/RPMS

 And you have
 installed
 /data/download/OO/OOB680_m5_native_packed-1_en-US.9011/RPMS/desktop-integra
tion/openoffice.org-redhat-menus-2.0.2-3.noarch.rpm

yes, that is installed. 

Chris

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] navigator question

2006-04-04 Thread Grzegorz Wolszczak
first of all great job about OOo! I do like it. Thank
You People!!!

Hi I am using OOo 2.0.2 PL (LGPL).

my question is how to embed the navigator window in
the main window (On the left or right side), so the
page layout flow on one side of the navigator window?
I mean it was possible in the older version 2.0. where
the navigator was appearing as an embedded part of the
main window. So I did not have to scale the document
in order to fit it to the navigator. 
Now the navigator is just over the text all the time
and it is hard to work with it. I was trying to use
help about dokcing the navigator window/panel. But
draging it or double clicking do not work in my
version.

thanks you in advance and cheers
Greg
[EMAIL PROTECTED]

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] problem's solved

2006-04-04 Thread BBBoulou

















thanx to everyne who took 5 min. to answer me.
I've downloaded the right program and everything's in order now. Special thanx to CPH see ya











Re: [users] [moderated] Scanning with Lexmark X73

2006-04-04 Thread Kenneth Bradley






Yes. Any other programme no problem.

---Original Message---


From: CPHennessy
Date: 04/03/06 23:39:58
To: users@openoffice.org; Kenneth Bradley
Subject: Re: [users] [moderated] Scanning with Lexmark X73

Does the software which come with the scanner work ?


On Sat April 1 2006 11:56, + Kenneth Bradley wrote:
[ MODERATED ] 
 Yes to all your questions. Version 2.02

 Please excuse mistake on original email. It is a X73 Lexmark.

 Thanks for your reply.

 Ken

 ---Original Message---

 From: CPHennessy
 Date: 04/01/06 11:11:18
 To: users@openoffice.org; Kenneth Bradley
 Subject: Re: [users] [moderated] Scanning with Lexmark X37

 On Fri March 31 2006 12:55, + Kenneth Bradley wrote:
 [ MODERATED ] 
  In Writer I cannot get any image on page although programme seems to
  recognise scanner.

 Did you do "Insert" - "Picture" - Scan - Select Source and the do a
 "Request" in the same sub menu ?

 What version of OpenOffice.org are you using ?

 Please reply to users@openoffice.org only

 --
 CPH : openoffice.org contributor

 Maybe your question has been answered already?
http://user-faq.openoffice.org/#FAQ


 --
 No virus found in this incoming message.
 Checked by AVG Free Edition.
 Version: 7.1.385 / Virus Database: 268.3.2/293 - Release Date: 26/03/2006

--
CPH : openoffice.org contributor

Maybe your question has been answered already?
 http://user-faq.openoffice.org/#FAQ


--
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.385 / Virus Database: 268.3.4/299 - Release Date: 31/03/2006

.









Re: [users] [moderated] IS THERE A WAY?

2006-04-04 Thread JOHN HOLLIDAY
Dave Barton... sorry about upper case type... never heard this complaint
before.
thanks

---BeginMessage---
On Mon, 2006-04-03 at 13:48 -0700, JOHN HOLLIDAY wrote:
 IS THERE A WAY I CAN BUY OPENOFFICE ON A DVD?? I'M IN PROCESS OF
 REPAIR.. THANKS

This page http://distribution.openoffice.org/cdrom/ lists distributors
of OOo (OpenOffice.org) on CD (maybe DVD). Choose one that is local to
you. The cost should be around US$10.

Please note the following extract from the above page:

OpenOffice.org does not endorse any of them [distributors] nor do we
guarantee the contents of the CDs they [distributors] sell.

BTW Please do not type messages in uppercase (capital) letters, as this
is considered to be shouting and very rude to people from whom you are
requesting assistance.

Hope this helps.

Dave

Please reply to users@openoffice.org only.


---End Message---
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Re: [users] [moderated]

2006-04-04 Thread Dave Barton
On Tue, 2006-04-04 at 13:03 -0400, B Cole wrote:
 When I go to view an email that uses Power Point Viewer, it opens in
 Open Office and I do not want it to be the default for Power Point.
 How do I change that?

http://user-faq.openoffice.org/faq/ar01s04.html#FILE-ASSOCIATIONS

Hope this helps.

Dave


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] Openoffice installation problem

2006-04-04 Thread Marie Saunders
Hello,
I have a bit of a problem with my OpenOffice
installation.  I was trying to install the
dictionaries for the office suite and it came to the
point where it said The list of dictionaries has been
successfully downloaded.  Please click Next to
continue.  But when I clicked Next, I got this
message: Openoffice.org Dictionary Installer List
Index Out of Bounds (1)  It had a big red X and an
OK button.  And from there I could not go any
further.  My version is OpenOffice.org The Open CD 
Version 1.4.1 I would appreciate any help or feedback
you can give me.  Thank you very much.

Marie Saunders

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] Saving to student folders in a file server over the network

2006-04-04 Thread Tom A Hunter
I have been using version 1.1.2 of OpenOffice.org with emacs,  Mac OS  
X 10.4.5 and have been able to save over the network to individual  
student folders.  I would like to start using version  2.0 of  
OpenOffice but I am not able to save to a file server over the  
network.  I keep getting the error:   error saving the document  
untitled1:  General input/output error while accessing /volumtes/ 
tomhunt/odt  Do you have any suggestions?



Thanks,

Tom Hunter
Rocky Mountain Elementary
[EMAIL PROTECTED]

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] What happened to the replace option?

2006-04-04 Thread Miguel Eduardo Flores Gómez
I am using version 2.0 of OpenOffice.org. My problem
is : i use the spanish version of OpenOffice 2.0.2,
it's a great program, but now i can't find the option
replace in the tools-autocorrection menu, and this
was one of my favorites tools, because y saved much
time using it.

The replace tab has been removed, why?

Is it a problem with the spanish package or this
tool
it's deprecated?



Thanks a lot for you time.
 
Miguel F







___ 
Do You Yahoo!? 
La mejor conexión a Internet y b 2GB/b extra a tu correo por $100 al mes. 
http://net.yahoo.com.mx 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] navigator question

2006-04-04 Thread Dan Lewis
On Tuesday April 4 2006 02:38 am, Grzegorz Wolszczak wrote:
 first of all great job about OOo! I do like it. Thank
 You People!!!

 Hi I am using OOo 2.0.2 PL (LGPL).

 my question is how to embed the navigator window in
 the main window (On the left or right side), so the
 page layout flow on one side of the navigator window?
 I mean it was possible in the older version 2.0. where
 the navigator was appearing as an embedded part of the
 main window. So I did not have to scale the document
 in order to fit it to the navigator.
 Now the navigator is just over the text all the time
 and it is hard to work with it. I was trying to use
 help about dokcing the navigator window/panel. But
 draging it or double clicking do not work in my
 version.

 thanks you in advance and cheers
 Greg
 [EMAIL PROTECTED]

 You must be holding the Control key down while double clicking to dock 
this toolbar.

Dan

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] Re: Reveal Codes

2006-04-04 Thread Jallan

Cor Nouws wrote:


I didn't notice an exeption for the default paragraph style.
Every paragraph style (well, I only tried six ;-) has the same behaviour.
When pasted, direct formatting (be it by Ctrl-B or character styles) the 
formatting is included.
When text without direct formatting is pasted, it gets the formatting of 
where it is placed.


Not, exactly. That's the problem.
I will use * to indicate bold and _ to indicate italic.

Type two lines in a clean paragraph:

Now is the time for all* good *_men _to come to the aid of the party.
*_The_ *quick* brown dog *_ jumps over _ the lazy dog.

Use emphasis and strong emphasis styles instead of italics and bolding 
if you want.


Note I have applied the effects to surrounding spaces, something that 
sometimes happens by accident, and sometimes ought to be done, as with a 
bold typeface embedded in non-bold text, or a fixed width font embedded 
in proportional text.


Copy and paste the second sentence into the first one, so that either 
the beginning the pasted sentence touches any of the characters with 
italic or bold attributes.


Watch the formatting all of non-italic, non-bold characters die.

The example is forced.

But this kind of situation is real, as anyone who has worked with 
complex technical manuals, foreign grammars, and various other technical 
writing knows. One does use quite a potpourri various visual styles 
within the text, and as in any document, when writing this kind of 
stuff, one does move things about with cutting and pasting.


That all the formatting in a string that matches the paragraph default 
character formatting should be blown away if it is pasted so that it 
happens to follow a single character with any different formatting 
attributes from the normal paragraph character style is surprising and 
not pleasant, at least to me.


I could live with your rule as well. But I think pasting text without 
direct formatting adapts to the place where pasted, is easier than that 
it doesn't adapt. That would influence every paste action.


The rules may be logical. I'm almost certain they are. But the question 
is whether this particular logical behavior is desirable logical 
behavior or whether it should be replaced by different logical behavior 
that more users are likely to desire.


Who asked for character attributes to be spread by contact, like a kind 
of plague?


The easy answer out of this situation, when it is only the default 
paragraph character style that automatically changes, is to avoid use of 
the default paragraph character style. Styles should make complex text 
easier, not more difficult.


Jallan


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] Labels

2006-04-04 Thread Richard Robbins
I have downloaded your tutorial and used your label template and spreadsheet
and nothing happens when I press the Data-to-Fields button.  I do select the
records in the database prior to that with the cursor in the first label of
the template.  Any other suggestions?


- Original Message - 
From: Peter Hillier-Brook [EMAIL PROTECTED]
To: users@openoffice.org
Sent: Saturday, April 01, 2006 2:37 PM
Subject: Re: [users] Labels


 Richard Robbins wrote:
  I can do form letters just fine but when it comes to labels, the same
things don't work.  The Synchronize button fails to populate the label
document.  So I'm stuck with only the document with the field names and
whatever other info I have typed in.

 Would my tutorial help? Half a meg in size.

 Peter HB

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] What happened to the replace option?

2006-04-04 Thread Howard Coles Jr.
On Tuesday 04 April 2006 16:33, Miguel Eduardo Flores Gómez wrote:
 I am using version 2.0 of OpenOffice.org. My problem
 is : i use the spanish version of OpenOffice 2.0.2,
 it's a great program, but now i can't find the option
 replace in the tools-autocorrection menu, and this
 was one of my favorites tools, because y saved much
 time using it.

When I go to Tools - Autocorrect I get a dialog box that pops up and one of 
the tabs there is Replace so I would say your's should have one as well.


-- 

See Ya'
Howard Coles Jr.
John 3:16!

Christian Books On-Line http://risenbooks.com
http://home.comcast.net/~dhcolesj

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] Goldmine software compatibility

2006-04-04 Thread Andrew Fisk
Why not take a look at vtiger instead of gold mine and save your self  
a few more $$$ -- and have a system in place that will accomodate  
some growth.



Thanks

Andy
Spitfire Computer Services
441 Beaver Street
Suite 202
Sewickley, PA 15143
Phone (412) 749-0162
Fax: (412) 749-0203
[EMAIL PROTECTED]
www.spitcomp.com

On Apr 3, 2006, at 7:35 PM, Keith Bates wrote:


On Mon, 3 Apr 2006 17:02:23 +0200
Kris Romans [EMAIL PROTECTED] wrote:


Hi,

Does anyone know if Golmine software is compatible with Openoffice
TEXT. I'm starting a business and find open office a great tool and
free but I also need to have my sales guy use goldmine. I was told
that it may not work with OO.org.

Thanks for the reply..I'd hate to give Bill another $800 for two sets
of MS Office!

Kris


Well it's free to download and test it. You're not going to lose out
any by giving it a go. :-)

You might like to update the list on what you find out.

--
God bless you,


Keith Bates
4 Mooloobar St
Narrabri NSW 2390

Phone: 02 67924890
Fax: 02 67925418

www.new-life.org.au

If you don't have a reason to live

JESUS IS THE ANSWER!

Ask him into your life today...
He really does make a difference.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






Re: [users] Labels

2006-04-04 Thread Richard Robbins
This makes the third try at following the exact steps in your tutorial but
no fields are populated in the label template when I press the
Data-to-Fields button.  Also, the F4 key does not bring up the data source
view; rather, it places a bullet in the label at the cursor.  So I'm not
sure what that means.

- Original Message - 
From: Peter Hillier-Brook [EMAIL PROTECTED]
To: users@openoffice.org
Sent: Tuesday, April 04, 2006 1:59 PM
Subject: Re: [users] Labels


 Richard Robbins wrote:
  It might.  Where and how can I get it?

 It's presently on my web site:

 http://www.hbsys.co.uk/openoffice/

 Peter HB

 [cut]

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[users] Re: [discuss] Math syntax

2006-04-04 Thread Paul
Have a look at the below for an excellent reference on math  :
http://documentation.openoffice.org/manuals/oooauthors/MathObjects.pdf

I think you could construct what your after out of existing functionality.

User questions are also better on users@openoffice.org

/paul

On 4/5/06, Unnilenni [EMAIL PROTECTED] wrote:
 Hi,

 I'm trying to write a scientific research project. I want to use Dirac's
 bracket notation (very popular in quantum mechanics) but I can't. There's
 the operator langle ? mline ? rangle, but I need to write separately 
 |  and | . I've looked up in the help files, but i couldn't find the
 solution. I'm not sure if it can be done but if not, it would be very useful
 for me and for other scientists.

 Thanks,

 Miquel.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] open office writer to microsoft word

2006-04-04 Thread linux mailing
He meant that you can't send an OOo .ODP file to an M$ Word user. You need
to click on File | Save As, then choose Microsoft Word (98/ME/2000/XP). Or
alternatively, export the file as a PDF file (File | Export as PDF). It
doesnt mean that you open the PDF in Word. A PDF is just a convenient way of
sending documents across the internet although the file can't be edited
right away without using another application.

On 4/4/06, Johnny Andersson [EMAIL PROTECTED] wrote:

 Den 2006-04-03 22:35:57 skrev Cor Nouws [EMAIL PROTECTED]:

  Hi Raymond,
 
  Raymond Anthony wrote:
 
  If I attached an open office writer file to an e-mail can it be opened
  by a user of microsoft wod, by clicking file and open commands only?
 
  People that do not (yet) have OOo, you'll have to send .doc (File|Save
  as) or pdf-files (File|Export to PDF).

 PDF??? I didn't know that you can open those with M$ Word. Maybe I should
 skip OOo and go back to M$ Office again, then...   ;)


 Johnny

 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




[users] Crashed ODS File

2006-04-04 Thread pttdp
I have a crashed ODS file and cannot be opened, having error message 
general error : general input/output error. How can I recover those 
file ? looks like OOo files pretty sensitive.


Thanks

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [users] Openoffice installation problem

2006-04-04 Thread Andi Permadi
Hello,
I think You should download the latest Open Office version from
http://www.openoffice.org. I don`t know the problem with the dictionaries.
Last year when I use 1.1.4, I downloaded the and extract the Indonesian
dictionary manualy from the website and edit dictionary.lst to add my own
dictionary.

The dictionary.lst is located on instalation directory like:
C:\Program Files\OpenOffice.org 1.1.4\share\dict\ooo in windows
please check dictionary.lst
the content is something like this:

# List of All Dictionaries to be Loaded by OpenOffice
# ---
# Each Entry in the list have the following space delimited fields
#
# Field 1: Entry Type DICT - spellchecking dictionary
# HYPH - hyphenation dictionary
# THES - thesaurus files
#
# Field 2: Language code from Locale en or de or pt ...
#
# Field 3: Country Code from Locale US or GB or PT
#
# Field 4: Root name of file(s) en_US or hyph_de or th_en_US
#  (do not add extensions to the name)

HYPH da DK hyph_da_DK
HYPH de DE hyph_de_DE
DICT en GB en_GB
HYPH en GB hyph_en_GB
DICT en US  en_US
HYPH en US hyph_en_US
THES en US th_en_US_v2
DICT it IT it_IT
HYPH it IT hyph_it_IT
HYPH ru RU hyph_ru_RU
DICT th TH th_TH
DICT sw TZ sw_TZ
DICT sw KE sw_TZ
THES cs CZ th_cs_CZ_v2

Please make sure that the file like the name I highlight  above exist in the
same directory.
 I don`t know if this will help. I recomend to get the latest version from
the website.
That is my way to fix the problem. Any one have better idea?

2006/4/4, Marie Saunders [EMAIL PROTECTED]:

 Hello,
 I have a bit of a problem with my OpenOffice
 installation.  I was trying to install the
 dictionaries for the office suite and it came to the
 point where it said The list of dictionaries has been
 successfully downloaded.  Please click Next to
 continue.  But when I clicked Next, I got this
 message: Openoffice.org Dictionary Installer List
 Index Out of Bounds (1)  It had a big red X and an
 OK button.  And from there I could not go any
 further.  My version is OpenOffice.org The Open CD
 Version 1.4.1 I would appreciate any help or feedback
 you can give me.  Thank you very much.

 Marie Saunders



--
Andi Permadi
Learn to live not otherwise
Phone : (+62) 081802135272