[libreoffice-users] Opening Remote Files

2017-09-04 Thread Ken Springer

OX X 10.11.6 El Capitan

LO 5.3.6.1

I'm working with the first of multiple files that will be located on a 
Windows 8.1 computer.  That computer and my Mac are both hardwired to a 
network.


LO seems to have an issue opening the document at the beginning of a 
work session.


Start Windows 8.1.

Start OS X.

Wait until the Mac has recognized and connected to 8.1.

Start LO to the Start Center.  The file I want is listed, but when I 
click on it, I get the message the file does not exist.  Even though I 
know it does exist.


If I click on Open File, I can then navigate to the W8.1 computer, and 
drill down to the folder where the file is and load it.


Even better, I have the folder that contains the file in the Finder's 
Sidebar.  Click on the folder, it opens and I can load the file I want.



Has anyone else seen this?

--
Ken
Mac OS X 10.11.6
Firefox 53.0.2  (64 bit)
Thunderbird 52.0
"My brain is like lightning, a quick flash
 and it's gone!"


--
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] Display of Formatting Aids and Document Windows size

2017-09-04 Thread Ken Springer

OX X 10.11.6 El Capitan

LO 5.3.6.1

In the Preferences window, LibreOfficeGeneral>Formatting Aids, I have 
almost every option checked, I.E  Paragraph end, Spaces, Tabs, etc.


But none of them show in the document.  What am I missing?



Is it possible to force LO to remember the last opened Window size?  I'm 
getting tired of having to resize windows.  :-(




--
Ken
Mac OS X 10.11.6
Firefox 53.0.2  (64 bit)
Thunderbird 52.0
"My brain is like lightning, a quick flash
 and it's gone!"


--
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] Overload resolution with the Automation bridge

2017-09-04 Thread ZevSpitz
>From [Using UNO from
Automation](https://wiki.openoffice.org/wiki/Documentation/DevGuide/ProUNO/Bridge/Using_UNO_from_Automation):

Different interfaces can have functions with the same name. There is no
way to call a function which belongs to a
particular interface, because interfaces can not be requested in
Automation. If a UNO object provides two functions
with the same name, it is undefined which function will be called. A
solution for this issue is planned for the future.

This page was last modified on 13 May 2009. Has there been any resolution to
the issue since then?

Also, even if the two functions have the same name, overloads could be
resolved based on the number and/or types of arguments passed in. Is this
actually done?

(I am trying to generate Typescript definitions for the UNO API
(https://github.com/zspitz/ts-activex-gen) and I have 14 instances where a
type implements two interfaces with conflicting member names.)



--
Sent from: http://nabble.documentfoundation.org/Users-f1639498.html

-- 
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] Help LIbreoffice calc, compress data in preview

2017-09-04 Thread charjim20
my pc:
windows 10 64bit
libreoffice 5
lx 310 printer.

on normal view all my data in calc are ok. but when a preview my spreadsheet
on my lx 310 print all may data is compress pls see attach picture

thank you
 




--
Sent from: http://nabble.documentfoundation.org/Users-f1639498.html

-- 
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] Help LIbreoffice calc, compress data in preview

2017-09-04 Thread charjim20
my pc
windows  64bit
libreoffice 5
printer epson lx 310

when i print preview on my spreadsheet my data is compress 

pls see attached picture

 


than you



--
Sent from: http://nabble.documentfoundation.org/Users-f1639498.html

-- 
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] Meaning of "protected" members, in particular under the Automation bridge

2017-09-04 Thread Stephan Bergmann

On 09/04/2017 07:18 AM, ZevSpitz wrote:

The following code (run under Windows Script Host):

 var serviceManager = new ActiveXObject('com.sun.star.ServiceManager');
 var desktop =
serviceManager.defaultContext.getByName('/singletons/com.sun.star.frame.theDesktop');
 var document = desktop.loadComponentFromURL("private:factory/swriter",
"_blank", 0, []);
 var textSections = new
VBArray(document.StyleFamilies.ElementNames).toArray();
 WScript.Echo(textSections.length); // outputs 7 in my case

makes use of the protected function
com.sun.star.XStyleFamiliesSupplier::getStyleFamilies. This function is
described as protected in the
[GenericTextDocument](https://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1text_1_1GenericTextDocument.html)
documentation.

Usually, protected means the member is only accessible from within a derived
class, but that doesn't seem to be the case here.

1. What does "protected" mean in this context?


UNOIDL does not have such a public/protected/private concept.

However, the documentation at 
 is generated with a tool, 
Doxygen, that is also used to generate documentation for other languages 
besides UNOIDL (like C++ and Java).


Michael (on CC) extended Doxygen to also support UNOIDL.  Looks like 
there is a bug somewhere that causes the generated output to mention 
"public" or "protected" where they don't make sense.


--
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