Re: [libreoffice-users] Versions 4.4.x don't render menus and "under the mouse" items correctly, anybody else seeing this?
I'm almost positive that this has been reported in the bug tracker. Best, Joel On Thu, Apr 9, 2015 at 12:01 PM, Adam Stein wrote: > I was hoping with every new version released in the 4.4 series, some > version would fix this, but it's not getting better and I've just tried > 4.4.2. > > I'm running Fedora 19 using KDE. Never had this type of problem before, > certainly not with 4.3 which (after installing 4.4) I wind up having to > go back to. > > Put simply, not everything in the window is drawn correctly. In the main > LibreOffice window (the one where you can select which type of document > to create), the top menu bar is all black and moving the mouse over the > other menu items like "Open File", "Recent Files", etc. produces > garbage. Move the mouse away, and the menu item is back to normal. > > Opening a Writer document produces garbage in the top part of the window > where the top menu and first line of icons are. > > In this state, LibreOffice is completely unusable and I have to > reinstall 4.3. > > I've completely removed 4.3 before installing 4.4. I've removed the > libreoffice files in ~/.config/libreoffice. Anybody know what's going on > or other things to try? Does this look like a library clash (maybe I > didn't remove everything from 4.3?) > > -- > Adam (a...@csh.rit.edu) > > > -- > To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org > Problems? > http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ > Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette > List archive: http://listarchives.libreoffice.org/global/users/ > All messages sent to this list will be publicly archived and cannot be > deleted > -- *Joel Madero* LibreOffice QA Volunteer jmadero@gmail.com -- To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette List archive: http://listarchives.libreoffice.org/global/users/ All messages sent to this list will be publicly archived and cannot be deleted
[libreoffice-users] Versions 4.4.x don't render menus and "under the mouse" items correctly, anybody else seeing this?
I was hoping with every new version released in the 4.4 series, some version would fix this, but it's not getting better and I've just tried 4.4.2. I'm running Fedora 19 using KDE. Never had this type of problem before, certainly not with 4.3 which (after installing 4.4) I wind up having to go back to. Put simply, not everything in the window is drawn correctly. In the main LibreOffice window (the one where you can select which type of document to create), the top menu bar is all black and moving the mouse over the other menu items like "Open File", "Recent Files", etc. produces garbage. Move the mouse away, and the menu item is back to normal. Opening a Writer document produces garbage in the top part of the window where the top menu and first line of icons are. In this state, LibreOffice is completely unusable and I have to reinstall 4.3. I've completely removed 4.3 before installing 4.4. I've removed the libreoffice files in ~/.config/libreoffice. Anybody know what's going on or other things to try? Does this look like a library clash (maybe I didn't remove everything from 4.3?) -- Adam (a...@csh.rit.edu) -- To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette List archive: http://listarchives.libreoffice.org/global/users/ All messages sent to this list will be publicly archived and cannot be deleted
[libreoffice-users] Re: Calc - failing search on numbers
Am 09.04.2015 um 13:04 schrieb Andreas Säger: > Am 09.04.2015 um 12:39 schrieb ianseeks: >> hi >> >> I've got a table of numbers of general format which i change (using >> Format/Cells) to make the display of numbers less than 10 have a leading >> zero. >> I cannot search for "07" etc as it will not find it, it will only search for >> "7" which finds me all the numbers with a "7" in it. >> >> How can i force the search to look for "07"? >> >> regards >> >> Ian >> > > Search for 7 because this is the numeric value you are after. When in > doubt about the correct search string for constant numbers, have a look > at the status bar. > If "007", "07" and "7" should be different cell values, then you should > store them as text values rather than numbers. > > You can format the column as text which treats new input as literal text but without changing any existing value. If you want numeric text with 10-digits, =TEXT(A1,"00") converts any number in A1 into a text value of the given format. The second argument can be any number format code you would use to format a number in your default locale context. Finally you would paste-special the converted numbers over the original values. -- To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette List archive: http://listarchives.libreoffice.org/global/users/ All messages sent to this list will be publicly archived and cannot be deleted
Re: [libreoffice-users] Calc: How to concat CTRL+ENTER to a string?
Hi,try: =CONCATENATE("Target Balance" & CHAR(10) & "Assuming " & E2*100 & "% Growth") /Gary From: William Drago To: LibreOffice List Sent: Thursday, 9 April 2015, 12:17 Subject: [libreoffice-users] Calc: How to concat CTRL+ENTER to a string? All, To place two lines of text in a cell I type the first line then press CTRL+ENTER and type the second line. I am trying to do this in an equation and don't know how. Here's what I have: =CONCATENATE("Target Balance Assuming ", E2*100, "% Growth") I want everything after "Target Balance" to appear in the second line of the cell so that the cell looks like this: Target Balance Assuming xx% Growth How do I modify the above equation to achieve this? Thanks, -Bill -- To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette List archive: http://listarchives.libreoffice.org/global/users/ All messages sent to this list will be publicly archived and cannot be deleted -- To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette List archive: http://listarchives.libreoffice.org/global/users/ All messages sent to this list will be publicly archived and cannot be deleted
Re: [libreoffice-users] Calc: How to concat CTRL+ENTER to a string?
Hi William, Am 09.04.2015 um 13:17 schrieb William Drago: > =CONCATENATE("Target Balance Assuming ", E2*100, "% Growth") > > I want everything after "Target Balance" to appear in the second > line of the cell so that the cell looks like this: > > Target Balance > Assuming xx% Growth First, you do not need to use CONCATENATE. You can just use the &-operator for concatenating strings. However, you can use the CONCATENATE function, as well, if you want. ;-) For a line break, take the ASCII character no. 10. e.g. ="Target Balance Assuming" & CHAR(10) & E2*100 & "% Growth" Cheers, Stefan -- LibreOffice - Die Freiheit nehm' ich mir! -- To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette List archive: http://listarchives.libreoffice.org/global/users/ All messages sent to this list will be publicly archived and cannot be deleted
[libreoffice-users] Calc: How to concat CTRL+ENTER to a string?
All, To place two lines of text in a cell I type the first line then press CTRL+ENTER and type the second line. I am trying to do this in an equation and don't know how. Here's what I have: =CONCATENATE("Target Balance Assuming ", E2*100, "% Growth") I want everything after "Target Balance" to appear in the second line of the cell so that the cell looks like this: Target Balance Assuming xx% Growth How do I modify the above equation to achieve this? Thanks, -Bill -- To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette List archive: http://listarchives.libreoffice.org/global/users/ All messages sent to this list will be publicly archived and cannot be deleted
[libreoffice-users] Re: Calc - failing search on numbers
Am 09.04.2015 um 12:39 schrieb ianseeks: > hi > > I've got a table of numbers of general format which i change (using > Format/Cells) to make the display of numbers less than 10 have a leading > zero. > I cannot search for "07" etc as it will not find it, it will only search for > "7" which finds me all the numbers with a "7" in it. > > How can i force the search to look for "07"? > > regards > > Ian > Search for 7 because this is the numeric value you are after. When in doubt about the correct search string for constant numbers, have a look at the status bar. If "007", "07" and "7" should be different cell values, then you should store them as text values rather than numbers. -- To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette List archive: http://listarchives.libreoffice.org/global/users/ All messages sent to this list will be publicly archived and cannot be deleted
[libreoffice-users] Calc - failing search on numbers
hi I've got a table of numbers of general format which i change (using Format/Cells) to make the display of numbers less than 10 have a leading zero. I cannot search for "07" etc as it will not find it, it will only search for "7" which finds me all the numbers with a "7" in it. How can i force the search to look for "07"? regards Ian Libreoffice on opensuse Tumbleweed Version: 4.4.2.2 Build ID: 40m0(Build:2) Locale: en_GB -- To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette List archive: http://listarchives.libreoffice.org/global/users/ All messages sent to this list will be publicly archived and cannot be deleted
Re: [libreoffice-users] DOWNLOAD HELP WITH IMPRESS
Hi :) It's unlikely that you are missing anything other than Base but it might be awkward to access some of the others. There are several other ways of opening blank documents. if you could try one of these and let us know what happens that might help us figure out what is going wrong. Hopefully it's just a case of getting the right short-cuts sorted out. 1. One way of forcing it is to just open something you can open. Then go up to the icon-bar at the top and click on the little triangle beside the blue or green icon. This should give a drop-down list of all the different modules/programs. Hopefully you will see the gold/yellow one for impress there and clicking on that should open a blank(ish) document using the default template. 2. You might be able to do something similar from the File menu and choose "New" from there. 3. Another way is to open a document in either Calc or Writer and then use File - Close Instead of quitting out of the whole of LibreOffice this should take you to the "Splash Screen" that lists the most recent documents as well as giving a list of all the different modules/programs and allowing you to open any of them but as a new empty document. Please let us know what result you get with one of those methods. Good luck and regards from Tom :) On 9 April 2015 at 00:50, Tim Lloyd wrote: > Hi, > > I don't think Impress is installed by default. What operating system are > you running and how did you install Libreoffice? > > cheers > > > On 09/04/15 09:39, roballjr wrote: > >> I already thought I downloaded the entire Libre suite. >> >> I have been using Writer and Calc. But just now I realize I don't seem to >> have any of the other applications -- like Impress. >> >> What did I do wrong? Did I miss a step in the process? Or are these >> other >> features hidden somewhere on my laptop right now? >> >> > > -- > To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org > Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to- > unsubscribe/ > Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette > List archive: http://listarchives.libreoffice.org/global/users/ > All messages sent to this list will be publicly archived and cannot be > deleted > -- To unsubscribe e-mail to: users+unsubscr...@global.libreoffice.org Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/ Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette List archive: http://listarchives.libreoffice.org/global/users/ All messages sent to this list will be publicly archived and cannot be deleted