• Re: Google Docs

    From micky@3:633/10 to All on Sat Mar 14 18:56:01 2026
    In alt.comp.os.windows-11, on Sat, 14 Mar 2026 22:56:33 +0100, "Carlos
    E.R." <robin_listas@es.invalid> wrote:

    On 2026-03-14 17:25, micky wrote:
    I went to visit a friend in NJ and someone in his family brought up
    Google Docs, and recommended it for him I thought the major feature of
    Google Docs was that files were stored in the cloud but the wikip
    article doesn't even mention that (or barely if I missed it).
    https://en.wikipedia.org/wiki/Google_Docs

    Okay "while collaborating with users in real-time." implies that it's
    online, at least during editing.

    Doesn't one have to learn at least a few things about google docs to use
    it. My friend, 83 yo, can learn new things, but doesn't really want to.

    IIRC he hasn't wanted to for 10 or 20 years, so it's not just that he's
    old now.

    If someone only works at home or at work or when he takes his laptop
    with him, and when none of that is true, he wants to be "on vacation"
    and free of computer chores, there is no point to google docs, is there?

    I use google docs solely for one purpose: documents that I want to
    access on my phone. Like a spreadsheet of car expenses. I also access
    the same docs on the computer.

    I thought that's the sort of thing it was good for.

    Once I used a text document, a list of things to do, me in Europe, my
    cousin in Canada. It was curious when we both were writing, we could
    chat using it.

    You can export the file to local storage, too.

    For normal usage on the computer, I use Libre Office alone.

    I've been copying my friend's old hard drive to a flash drive and his
    own files are mostly .docx . I think that is the default for Word, but
    I don't know if his new computer includes Word. If he has to buy it, he
    won't be happy. Maybe he will switch to Libreoffice.

    I rarely care if something looks nice, but when I do, I use Libreoffice
    too.

    Not a pending problem, just FYI: I've copied about 35,000 files that he
    wrote, he downloaded, or which have a user extension, and every one of
    35,000 copied fine on the first try except the only two .doc files,
    which, strangely enough, worked fine when I clicked on them on his
    harddrive (which I removed from the laptop with the broken screen). (He
    wrote those two files too, with the same name, found in a directory and
    its sub-directory, only 4 short lines long.)
    I am curious what would make a file NOT copy with XXCopy (which I
    think uses Xcopy for the actual copy step), whether or not it could
    actually be read, especially since it could be read with no problem.


    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Paul@3:633/10 to All on Sat Mar 14 21:58:32 2026
    On Sat, 3/14/2026 6:56 PM, micky wrote:

    <<snippage>>
    Not a pending problem, just FYI: I've copied about 35,000 files that he wrote, he downloaded, or which have a user extension, and every one of
    35,000 copied fine on the first try except the only two .doc files,
    which, strangely enough, worked fine when I clicked on them on his
    harddrive (which I removed from the laptop with the broken screen). (He
    wrote those two files too, with the same name, found in a directory and
    its sub-directory, only 4 short lines long.)
    I am curious what would make a file NOT copy with XXCopy (which I
    think uses Xcopy for the actual copy step), whether or not it could
    actually be read, especially since it could be read with no problem.


    Windows is case insensitive. However, you can flip that and make
    it case sensitive. Then note.txt and NOTE.txt can be stored in
    the same directory, in case sensitive mode.

    Some tools may be old enough, they may not be "aware" programmatically,
    that case sensitivity is ON.

    Normally, you would suspect a file ownership or permissions issue,
    prevents copying. Try copying the System Volume Information folder
    on the root of a disk. How did that go ? Was that fun ?

    When you copy files from one C:\users\micky\Downloads to another C:\users\micky\Downloads , and you're not in a domain or anything,
    those files would benefit from different SIDs (Security ID). Each home
    user OS has a custom SID number for "Micky".
    You can get some flavor of what a SID is, from the identifiers
    you may have seen that are associated with the Recycle Bin.
    Doing a Takeown allows assigning a new SID to a thing.
    It might even remove that accursed green bar from File Explorer :-)

    *******

    One way I can do a copy here is:

    1) Do a Macrium backup of Old_C:
    2) Bring the Macrium MRIMG file to my pen drive preparation machine.
    (On your current setup, there would be "nothing to do to achieve this".)
    Use the Macrium Explore function and mount the MRIMG C: as K:
    and "remove restrictions" tick box in the interface of the mounting dialog.
    Now, you are working with a copy of the goods and not the original goods.
    3) Then, if you xxcopy K:\users\micky\Downloads to P:\your-recovered-files\
    there would be no problem with the permissions. The permissions and
    SID of the person doing the xxcopy would likely be the only possible
    assignment.

    The OS is capable of doing implicit Takeown (and presumably when you are
    a member of the administrator group -- don't assume that unelevated
    users like the LowBoy account I use for test on machines, would be able
    to do this). The itsmine.cmd shows an explicit way of doing ownership,
    but do not be applying this to the entire C: drive, or there will be
    "severe tire wear" :-/

    The itsmine.cmd file is two lines only:

    takeown /f %1 /r /d y
    icacls %1 /grant administrators:F /t

    *******

    When designing a "best practices" way of copying a friends
    files, you have to be aware that the disk could be on its
    last legs. Your first step is doing a low-stress forensic backup
    without unintentionally overheating the drive (keeping it
    in an insulated place with no airflow). A "dd.exe" run
    can do this for you. If the "dd.exe" finishes, it means
    there were no CRC errors during the run. If the drive were
    to later croak on you and stop responding, the dd output file
    is your copy of the goods.

    A dd.exe copy can copy a dirty partition, a partition in
    need of a chkdsk.

    Since chkdsk /f is potentially destructive, you don't
    run one of those, until you have your dd.exe disk image made.

    I could add more steps, but you get the basic idea. You use
    low stress methods that check for trouble and make a forensic
    copy first. Then, if you have a "handling accident" while working,
    your goose is not cooked, and you have alternatives.

    Rather than change the recipes you are comfortable with, I
    would add steps for insurance purposes.

    Most of the time chkdsk /f is safe. But it can and has
    completely and utterly destroyed a partition, so as your
    insurance agent, I would say to you "you could use some insurance".

    Paul

    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From malxau@3:633/10 to All on Sun Mar 15 18:07:29 2026
    In alt.comp.os.windows-10 micky <NONONOmisc07@fmguy.com> wrote:
    I've been copying my friend's old hard drive to a flash drive...

    Not a pending problem, just FYI: I've copied about 35,000 files that he wrote, he downloaded, or which have a user extension, and every one of
    35,000 copied fine on the first try except the only two .doc files,
    which, strangely enough, worked fine when I clicked on them on his
    harddrive (which I removed from the laptop with the broken screen)...

    What was the flash drive formatted with? My guess would be copying from
    NTFS to FAT, and finding different restrictions between them. There's a
    pile of file naming issues that can confuse tools (are you comfortable
    sharing file names?)

    - M

    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From micky@3:633/10 to All on Sun Mar 15 15:28:37 2026
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 18:07:29 -0000 (UTC),
    malxau <invalid@invalid.net> wrote:

    In alt.comp.os.windows-10 micky <NONONOmisc07@fmguy.com> wrote:
    I've been copying my friend's old hard drive to a flash drive...

    Not a pending problem, just FYI: I've copied about 35,000 files that he
    wrote, he downloaded, or which have a user extension, and every one of
    35,000 copied fine on the first try except the only two .doc files,
    which, strangely enough, worked fine when I clicked on them on his
    harddrive (which I removed from the laptop with the broken screen)...

    What was the flash drive formatted with? My guess would be copying from
    NTFS to FAT,

    You're right!

    and finding different restrictions between them. There's a
    pile of file naming issues that can confuse tools (are you comfortable >sharing file names?)

    The two files in the source drive are
    "F:\06_04_2019\..Parsha & P sheets\B'raishees.doc" and
    "F:\06_04_2019\..Parsha & P sheets\5777\B'raishees.doc"

    Both of them are 26,112 bytes but when opened, Libreffice counts 105 characters. Talk about overhead!!

    Both contain an apostrophe??, but he has a bunch of other files that
    copied fine whose names also have an apostrophe (the same one? Does it matter?). He also has a bunch of .docx files in that subdirectory that
    all got copied.

    FWIW, these two have the same date and time, to the minute

    I presume the dots are in the folder name so it will sort first.



    YOu can ignore the next paragraph. I realize I was not copying Hidden
    or System files and the file below is both. I almost always use /clone
    that copies all files, but for these copies I did not and the default is
    not to copy hidden or system files. Do I need to go back and get
    them...I don't think he needs them and I doubt there are any others.
    I see there was a third .doc file,with a time one minute later,
    Hidden and System, that didn't get copied and didn't get an error
    either. That is, XXCopy did't try to copy it!!
    "F:\06_04_2019\..Parsha & P sheets\5777\~$raishees.doc"
    It doesn't like the tilde? Or the dollar sign? It doesn't like that
    LO would later say that it is corrupt? Would XCopy have this problem
    or did the author of XXCopy introduce it. (Kan Yabumoto. He died at a
    fairly young age, or I would ask him.) NONE OF THESE. It's a hidden
    file.
    LIbreoffice says about it: The file '~$raishees.doc' is corrupt and therefore cannot be opened. LibreOffice can try to repair the file.
    The corruption could be the result of document manipulation or of
    structural document damage due to data transmission.
    We recommend that you do not trust the content of the repaired document. Execution of macros is disabled for this document.
    Should LibreOffice repair the file?

    I say Yes, but: The file '~$raishees.doc' could not be repaired and
    therefore cannot be opened.
    The file itself couldn't be important. It was proably some temp file
    for a file that is only 105 bytes long.

    - M

    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From NONONOmisc07@3:633/10 to All on Sun Mar 15 15:31:48 2026
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 18:07:29 -0000 (UTC),
    malxau <invalid@invalid.net> wrote:

    In alt.comp.os.windows-10 micky <NONONOmisc07@fmguy.com> wrote:
    I've been copying my friend's old hard drive to a flash drive...

    Not a pending problem, just FYI: I've copied about 35,000 files that he
    wrote, he downloaded, or which have a user extension, and every one of
    35,000 copied fine on the first try except the only two .doc files,
    which, strangely enough, worked fine when I clicked on them on his
    harddrive (which I removed from the laptop with the broken screen)...

    What was the flash drive formatted with? My guess would be copying from
    NTFS to FAT,

    You're right!

    and finding different restrictions between them. There's a
    pile of file naming issues that can confuse tools (are you comfortable >sharing file names?)

    The two files in the source drive are
    "F:\06_04_2019\..Parsha & P sheets\B'raishees.doc" and
    "F:\06_04_2019\..Parsha & P sheets\5777\B'raishees.doc"

    Both of them are 26,112 bytes but when opened, Libreffice counts 105 characters. Talk about overhead!!

    Both contain an apostrophe??, but he has a bunch of other files that
    copied fine whose names also have an apostrophe (the same one? Does it matter?). He also has a bunch of .docx files in that subdirectory that
    all got copied.

    FWIW, these two have the same date and time, to the minute

    I presume the dots are in the folder name so it will sort first.



    YOu can ignore the next paragraph. I realize I was not copying Hidden
    or System files and the file below is both. I almost always use /clone
    that copies all files, but for these copies I did not and the default is
    not to copy hidden or system files. Do I need to go back and get
    them...I don't think he needs them and I doubt there are any others.
    I see there was a third .doc file,with a time one minute later,
    Hidden and System, that didn't get copied and didn't get an error
    either. That is, XXCopy did't try to copy it!!
    "F:\06_04_2019\..Parsha & P sheets\5777\~$raishees.doc"
    It doesn't like the tilde? Or the dollar sign? It doesn't like that
    LO would later say that it is corrupt? Would XCopy have this problem
    or did the author of XXCopy introduce it. (Kan Yabumoto. He died at a
    fairly young age, or I would ask him.) NONE OF THESE. It's a hidden
    file.
    LIbreoffice says about it: The file '~$raishees.doc' is corrupt and therefore cannot be opened. LibreOffice can try to repair the file.
    The corruption could be the result of document manipulation or of
    structural document damage due to data transmission.
    We recommend that you do not trust the content of the repaired document. Execution of macros is disabled for this document.
    Should LibreOffice repair the file?

    I say Yes, but: The file '~$raishees.doc' could not be repaired and
    therefore cannot be opened.
    The file itself couldn't be important. It was proably some temp file
    for a file that is only 105 bytes long.

    - M

    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From micky@3:633/10 to All on Sun Mar 15 15:34:11 2026
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 22:46:01 +1100, Daniel70 <daniel47@nomail.afraid.org> wrote:


    My thoughts about using Google Docs would centre around the fact that
    once Google has your Docs, Google HAS your Docs.

    I think it was a grandchild who suggested google docs. They are too
    young to be suspicious. Until after something goes wrong.

    Mind you, that's just MY assumption (and you know what they say about
    people who ASSUME!!).

    Yes, I do.
    --
    Daniel70

    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From knuttle@3:633/10 to All on Sun Mar 15 16:53:59 2026
    On 03/15/2026 3:34 PM, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 22:46:01 +1100, Daniel70 <daniel47@nomail.afraid.org> wrote:


    My thoughts about using Google Docs would centre around the fact that
    once Google has your Docs, Google HAS your Docs.

    I think it was a grandchild who suggested google docs. They are too
    young to be suspicious. Until after something goes wrong.

    Mind you, that's just MY assumption (and you know what they say about
    people who ASSUME!!).

    Yes, I do.
    --
    Daniel70
    I would second the previously made suggestion of the free Libre Office.

    In my experience it is completely compatible with MS office documents.

    It is simpler to use than both MS Office and Google Docs. I takes a
    lot to save a Google doc to your personal drive. If you send a
    document to some one, you have to do a lot of playing with the file to
    be able to read it. (I only use Google Docs if my grandson send one to me.)

    The menu of Libreoffice is a lot easier to use that the labyrinth that
    MS calls a menu. With Libreoffice, if you search for the function it
    shows you where the function is located in the menu. With MS Office it
    gives you an active link to the functions. Great for one time use, but
    the searching becomes burdensome in you are using the function all in
    the document

    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From sticks@3:633/10 to All on Sun Mar 15 16:53:07 2026
    On 3/15/2026 3:53 PM, knuttle wrote:

    The menu of Libreoffice is a lot easier to use that the labyrinth that
    MS calls a menu.ÿ With Libreoffice, if you search for the function it
    shows you where the function is located in the menu.ÿ With MS Office it gives you an active link to the functions.ÿ Great for one time use, but
    the searching becomes burdensome in you are using the function all in
    the document

    it should be right at the top of the list if your category selected is
    "Most Recently Used"


    --
    Science Doesn?t Support Darwin. Scientists Do


    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Chris@3:633/10 to All on Tue Mar 17 10:34:02 2026
    knuttle <keith_nuttle@yahoo.com> wrote:
    On 03/15/2026 3:34 PM, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 22:46:01 +1100, Daniel70
    <daniel47@nomail.afraid.org> wrote:


    My thoughts about using Google Docs would centre around the fact that
    once Google has your Docs, Google HAS your Docs.

    I think it was a grandchild who suggested google docs. They are too
    young to be suspicious. Until after something goes wrong.

    Mind you, that's just MY assumption (and you know what they say about
    people who ASSUME!!).

    Yes, I do.
    --
    Daniel70
    I would second the previously made suggestion of the free Libre Office.

    In my experience it is completely compatible with MS office documents.

    Only the simplest text documents or spreadsheets. Any special formatting is difficult to maintain between office and libreoffice. Excel macros often
    don't work at all.

    Powerpoint compatibility is just terrible.

    It is simpler to use than both MS Office and Google Docs. I takes a
    lot to save a Google doc to your personal drive. If you send a
    document to some one, you have to do a lot of playing with the file to
    be able to read it. (I only use Google Docs if my grandson send one to me.)

    Obviously, using an unfamiliar system may seem complicated especially if
    you force it to work in not the best way.

    Googledocs aren't meant to be "sent" to people, but rather shared via
    google. No saving nor playing required. The permissions can be a bit
    fiddly, mind.

    If you do want to save the file then you can save it as native Libre Office format pretty simply. Not sure what you mean by "lots of playing".

    The menu of Libreoffice is a lot easier to use that the labyrinth that
    MS calls a menu. With Libreoffice, if you search for the function it
    shows you where the function is located in the menu. With MS Office it gives you an active link to the functions. Great for one time use, but
    the searching becomes burdensome in you are using the function all in
    the document





    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From J. P. Gilliver@3:633/10 to All on Tue Mar 17 13:39:12 2026
    On 2026/3/17 10:34:2, Chris wrote:
    knuttle <keith_nuttle@yahoo.com> wrote:
    []
    I would second the previously made suggestion of the free Libre Office.

    In my experience it is completely compatible with MS office documents.

    Only the simplest text documents or spreadsheets. Any special formatting is difficult to maintain between office and libreoffice. Excel macros often don't work at all.

    Powerpoint compatibility is just terrible.

    It is simpler to use than both MS Office and Google Docs. I takes a
    lot to save a Google doc to your personal drive. If you send a
    document to some one, you have to do a lot of playing with the file to
    be able to read it. (I only use Google Docs if my grandson send one to me.)

    Obviously, using an unfamiliar system may seem complicated especially if
    you force it to work in not the best way.

    Agreed; trying to use something other than what you're used to always
    seems other than simple. I have "muscle memory" for Word 2003 and
    earlier - meaning I can do things without thinking of how I do them.
    Even the change to the "ribbon" interface in Word (2007 on I think)
    confuses me, let alone trying LibreOffice or any of the alternatives. (I
    think of .doc as a de fact standard [I've certainly not encountered any
    real case where .docx, or any other format, would actually give me
    something extra I'd actually use] - YMMV.)

    Googledocs aren't meant to be "sent" to people, but rather shared via
    google. No saving nor playing required. The permissions can be a bit
    fiddly, mind.

    If you do want to save the file then you can save it as native Libre Office format pretty simply. Not sure what you mean by "lots of playing".

    The menu of Libreoffice is a lot easier to use that the labyrinth that
    MS calls a menu. With Libreoffice, if you search for the function it
    shows you where the function is located in the menu. With MS Office it
    gives you an active link to the functions. Great for one time use, but
    the searching becomes burdensome in you are using the function all in
    the document


    That does sound a better design. (Though for anything other than simple
    things like "bold", you have to hope that the "help" creator anticipated
    the term you might search for, such as "alignment" rather than
    "justification" or vice versa.)


    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()ALIS-Ch++(p)Ar++T+H+Sh0!:`)DNAf

    Where [other presenters] tackle the world with a box of watercolours,
    he takes a spanner. - David Butcher (on Guy Martin), RT 2015/1/31-2/6

    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From micky@3:633/10 to All on Wed Mar 18 15:39:57 2026
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 16:53:59 -0400, knuttle <keith_nuttle@yahoo.com> wrote:

    On 03/15/2026 3:34 PM, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 22:46:01 +1100, Daniel70
    <daniel47@nomail.afraid.org> wrote:


    My thoughts about using Google Docs would centre around the fact that
    once Google has your Docs, Google HAS your Docs.

    I think it was a grandchild who suggested google docs. They are too
    young to be suspicious. Until after something goes wrong.

    Mind you, that's just MY assumption (and you know what they say about
    people who ASSUME!!).

    Yes, I do.
    --
    Daniel70
    I would second the previously made suggestion of the free Libre Office.

    In my experience it is completely compatible with MS office documents.

    When it asks me if I want to save a document as .odt or .docx, I'm not
    sure what to do If I leave it as .odt will the person I send it to who
    only has Word be able to read an .odt? With no special efforts on his
    part, just click on it?

    Becasue I was not sure the answer above is Yes, I've saving files as
    .docx or .doc, whatever LO suggest in that box, but then it warns me
    that special features from LO may not be carried over. I don't use
    special features, except maybe Bold and colored tex. These seem old and
    pretty basic. Surely these would be carried over to MS Office, right???

    It is simpler to use than both MS Office and Google Docs. I takes a
    lot to save a Google doc to your personal drive. If you send a
    document to some one, you have to do a lot of playing with the file to
    be able to read it. (I only use Google Docs if my grandson send one to me.)

    The menu of Libreoffice is a lot easier to use that the labyrinth that
    MS calls a menu. With Libreoffice, if you search for the function it
    shows you where the function is located in the menu. With MS Office it

    I'll have to check that out. I really should use LO more often instead
    of notepad or ++. Plus-plus has a really wierd method of new lines, paragraphs, etc.

    gives you an active link to the functions. Great for one time use, but
    the searching becomes burdensome in you are using the function all in
    the document

    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From J. P. Gilliver@3:633/10 to All on Wed Mar 18 20:46:02 2026
    On 2026/3/18 19:39:57, micky wrote:
    []
    When it asks me if I want to save a document as .odt or .docx, I'm not
    sure what to do If I leave it as .odt will the person I send it to who
    only has Word be able to read an .odt? With no special efforts on his
    part, just click on it?

    I would always save as .doc; that can be read by old versions of Word,
    new versions of Word, LibreOffice, and most other WPs (not sure about WordPerfect, if that still exists).

    Becasue I was not sure the answer above is Yes, I've saving files as
    .docx or .doc, whatever LO suggest in that box, but then it warns me
    that special features from LO may not be carried over. I don't use
    special features, except maybe Bold and colored tex. These seem old and pretty basic. Surely these would be carried over to MS Office, right???

    Bold and coloured text have been part of anything other than plain text
    editors for decades - I'm pretty sure they're there in Wordpad, even
    Write (from Windows 3.x).

    I have used WPs that not only tell you that certain features may be
    lost, but actually tell you which ones in the current document they are.
    At least, I think I have. But even if not, I think it's unlikely you
    _are_ using any such facilities without knowing.
    []
    I'll have to check that out. I really should use LO more often instead
    of notepad or ++. Plus-plus has a really wierd method of new lines, paragraphs, etc.

    notepad (with one or two +s) is really intended for plain text, or maybe
    source code (where the + ones can pre-colour certain aspects of many
    common programming languages); they're not really appropriate for word-processing, e. g. with fonts that have variable-width characters
    (e. g. i narrow, w wide). Equally, I _wouldn't_ use Word (or LO, Write, WordPad, WordPerfect, ...) for such "documents" (texts).
    []
    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()ALIS-Ch++(p)Ar++T+H+Sh0!:`)DNAf

    Never make the same mistake twice...there are so many new ones to make!

    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Paul@3:633/10 to All on Wed Mar 18 18:34:16 2026
    On Wed, 3/18/2026 3:39 PM, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 16:53:59 -0400, knuttle <keith_nuttle@yahoo.com> wrote:

    On 03/15/2026 3:34 PM, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 22:46:01 +1100, Daniel70
    <daniel47@nomail.afraid.org> wrote:


    My thoughts about using Google Docs would centre around the fact that
    once Google has your Docs, Google HAS your Docs.

    I think it was a grandchild who suggested google docs. They are too
    young to be suspicious. Until after something goes wrong.

    Mind you, that's just MY assumption (and you know what they say about
    people who ASSUME!!).

    Yes, I do.
    --
    Daniel70
    I would second the previously made suggestion of the free Libre Office.

    In my experience it is completely compatible with MS office documents.

    When it asks me if I want to save a document as .odt or .docx, I'm not
    sure what to do If I leave it as .odt will the person I send it to who
    only has Word be able to read an .odt? With no special efforts on his
    part, just click on it?

    Becasue I was not sure the answer above is Yes, I've saving files as
    .docx or .doc, whatever LO suggest in that box, but then it warns me
    that special features from LO may not be carried over. I don't use
    special features, except maybe Bold and colored tex. These seem old and pretty basic. Surely these would be carried over to MS Office, right???

    It is simpler to use than both MS Office and Google Docs. I takes a
    lot to save a Google doc to your personal drive. If you send a
    document to some one, you have to do a lot of playing with the file to
    be able to read it. (I only use Google Docs if my grandson send one to me.) >>
    The menu of Libreoffice is a lot easier to use that the labyrinth that
    MS calls a menu. With Libreoffice, if you search for the function it
    shows you where the function is located in the menu. With MS Office it

    I'll have to check that out. I really should use LO more often instead
    of notepad or ++. Plus-plus has a really wierd method of new lines, paragraphs, etc.

    gives you an active link to the functions. Great for one time use, but
    the searching becomes burdensome in you are using the function all in
    the document

    Microsoft offers some comparisons between .odt and .docx

    https://support.microsoft.com/en-us/office/differences-between-the-opendocument-text-odt-format-and-the-word-docx-format-d9d51a92-56d1-4794-8b68-5efb57aebfdc

    For the communications part of documents (formatted text, inserted images)
    it shouldn't make much difference if you are writing "marketing documents"
    to send to a client.

    It's only if you get super-fancy, that you're likely to get caught in
    one of the little traps.

    If you are writing book style documents, five hundred pages with a
    lot of generated metadata (TOC, Appendix, Blbliography), you might run
    into a rough edge or two.

    But if you were communicating with John and his .doc capability,
    then you would avoid showing off your desktop publishing prowess
    and just stick with basics.

    For the tool we used at work, you could construct things that
    would cause pain for other tools, and that is why some of
    those sorts of documents were called "benchmarks" by their
    creator. Our IT department could break just about anything.

    Paul

    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Chris@3:633/10 to All on Thu Mar 19 07:51:25 2026
    J. P. Gilliver <G6JPG@255soft.uk> wrote:
    On 2026/3/18 19:39:57, micky wrote:
    []
    When it asks me if I want to save a document as .odt or .docx, I'm not
    sure what to do If I leave it as .odt will the person I send it to who
    only has Word be able to read an .odt? With no special efforts on his
    part, just click on it?

    I would always save as .doc; that can be read by old versions of Word,
    new versions of Word, LibreOffice, and most other WPs (not sure about WordPerfect, if that still exists).

    I wouldn't. .doc is a dead proprietary format that has been reverse
    engineered. There's no guarantee of interoperability between different versions. Plus it can be vector for malware . Microsoft, for example, is dropping support for it.

    .docx is an open standard which is readable by pretty much all applications that need to.


    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Chris@3:633/10 to All on Thu Mar 19 07:59:51 2026
    micky <NONONOmisc07@fmguy.com> wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 16:53:59 -0400, knuttle <keith_nuttle@yahoo.com> wrote:

    On 03/15/2026 3:34 PM, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 22:46:01 +1100, Daniel70
    <daniel47@nomail.afraid.org> wrote:


    My thoughts about using Google Docs would centre around the fact that
    once Google has your Docs, Google HAS your Docs.

    I think it was a grandchild who suggested google docs. They are too
    young to be suspicious. Until after something goes wrong.

    Mind you, that's just MY assumption (and you know what they say about
    people who ASSUME!!).

    Yes, I do.
    --
    Daniel70
    I would second the previously made suggestion of the free Libre Office.

    In my experience it is completely compatible with MS office documents.

    When it asks me if I want to save a document as .odt or .docx, I'm not
    sure what to do If I leave it as .odt will the person I send it to who
    only has Word be able to read an .odt? With no special efforts on his
    part, just click on it?

    In theory, newer versions of Word can read .odt format files.

    Becasue I was not sure the answer above is Yes, I've saving files as
    .docx or .doc, whatever LO suggest in that box, but then it warns me
    that special features from LO may not be carried over. I don't use
    special features, except maybe Bold and colored tex. These seem old and pretty basic. Surely these would be carried over to MS Office, right???

    Yes. Don't worry about that. You can set LO to save files as .docx by
    default if you want.


    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Paul@3:633/10 to All on Thu Mar 19 06:29:08 2026
    On Thu, 3/19/2026 3:51 AM, Chris wrote:
    J. P. Gilliver <G6JPG@255soft.uk> wrote:
    On 2026/3/18 19:39:57, micky wrote:
    []
    When it asks me if I want to save a document as .odt or .docx, I'm not
    sure what to do If I leave it as .odt will the person I send it to who
    only has Word be able to read an .odt? With no special efforts on his
    part, just click on it?

    I would always save as .doc; that can be read by old versions of Word,
    new versions of Word, LibreOffice, and most other WPs (not sure about
    WordPerfect, if that still exists).

    I wouldn't. .doc is a dead proprietary format that has been reverse engineered. There's no guarantee of interoperability between different versions. Plus it can be vector for malware . Microsoft, for example, is dropping support for it.

    .docx is an open standard which is readable by pretty much all applications that need to.


    There are two five hundred page documents that cover office.

    One of them was used by Sun Microsystems, to build the framework
    for opening Office documents. LibreOffice fork, continues with
    the "fleshing out" of the <cough> "minor details". That's why
    the document opening step worked at all, in the FOSS side of
    the ecosystem. That wasn't reverse engineering. There's a document.

    If you know what the attack surface is on a document type
    (executable macros), you can shut that off. Even a PDF
    document contains an attack surface, and one of the first
    things you do when installing Reader is you shut that off.

    It's the source of a document that matters as much as
    the attack surfaces or potential attack surfaces.

    How a .docx differs, is it uses a ZIP container for
    a series of files. But the one file that contains
    the DTP core of the document, that and the .doc need
    to have similar information inside. That doesn't mean
    that the documents are "divergent on intent". They do
    the same things, and plus or minus, there's no reason
    for the content portion of .doc and .docx to be different.

    Microsoft seldom removes attack surfaces, no matter
    what the consequences. Notice how widgets appeared,
    disappeared, and appeared again. Once they get an idea
    in their heads, it can take "basic exhaustion" of an
    idea, to get rid of it again. Common sense won't remove it :-)

    Paul



    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From J. P. Gilliver@3:633/10 to All on Thu Mar 19 10:38:15 2026
    On 2026/3/19 7:51:25, Chris wrote:
    J. P. Gilliver <G6JPG@255soft.uk> wrote:
    On 2026/3/18 19:39:57, micky wrote:
    []
    When it asks me if I want to save a document as .odt or .docx, I'm not
    sure what to do If I leave it as .odt will the person I send it to who
    only has Word be able to read an .odt? With no special efforts on his
    part, just click on it?

    I would always save as .doc; that can be read by old versions of Word,
    new versions of Word, LibreOffice, and most other WPs (not sure about
    WordPerfect, if that still exists).

    I wouldn't. .doc is a dead proprietary format that has been reverse engineered. There's no guarantee of interoperability between different versions. Plus it can be vector for malware . Microsoft, for example, is dropping support for it.

    Oh, typical Microsoft.

    .docx is an open standard which is readable by pretty much all applications that need to.

    Except older versions of Word. Yes, there are patches (now harder to
    find) for at least Word/Office 2003 (not sure about earlier) that will
    let them read (not sure about save) the *x versions.
    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()ALIS-Ch++(p)Ar++T+H+Sh0!:`)DNAf

    Mike Jackson |\ _,,,---,,_
    and Squeak /,`.-'`' -. ;-;;,_ Shame there's no snooze button
    [1998] |,4- ) )-,_..;\ ( `'- on a cat who wants breakfast
    zzz '---''(_/--' `-'\_)

    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Chris@3:633/10 to All on Thu Mar 19 15:00:04 2026
    J. P. Gilliver <G6JPG@255soft.uk> wrote:
    On 2026/3/19 7:51:25, Chris wrote:
    J. P. Gilliver <G6JPG@255soft.uk> wrote:
    On 2026/3/18 19:39:57, micky wrote:
    []
    When it asks me if I want to save a document as .odt or .docx, I'm not >>>> sure what to do If I leave it as .odt will the person I send it to who >>>> only has Word be able to read an .odt? With no special efforts on his >>>> part, just click on it?

    I would always save as .doc; that can be read by old versions of Word,
    new versions of Word, LibreOffice, and most other WPs (not sure about
    WordPerfect, if that still exists).

    I wouldn't. .doc is a dead proprietary format that has been reverse
    engineered. There's no guarantee of interoperability between different
    versions. Plus it can be vector for malware . Microsoft, for example, is
    dropping support for it.

    Oh, typical Microsoft.

    It's quite funny because in order to read older word docs you need to use Libreoffice.

    .docx is an open standard which is readable by pretty much all applications >> that need to.

    Except older versions of Word. Yes, there are patches (now harder to
    find) for at least Word/Office 2003 (not sure about earlier) that will
    let them read (not sure about save) the *x versions.

    You can't expect legacy software to be forwards compatible with standards
    that post date them.

    As I said above just use LibreOffice. Why bother with such an old version
    of word at all?


    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Chris@3:633/10 to All on Thu Mar 19 15:00:06 2026
    Paul <nospam@needed.invalid> wrote:
    On Thu, 3/19/2026 3:51 AM, Chris wrote:
    J. P. Gilliver <G6JPG@255soft.uk> wrote:
    On 2026/3/18 19:39:57, micky wrote:
    []
    When it asks me if I want to save a document as .odt or .docx, I'm not >>>> sure what to do If I leave it as .odt will the person I send it to who >>>> only has Word be able to read an .odt? With no special efforts on his >>>> part, just click on it?

    I would always save as .doc; that can be read by old versions of Word,
    new versions of Word, LibreOffice, and most other WPs (not sure about
    WordPerfect, if that still exists).

    I wouldn't. .doc is a dead proprietary format that has been reverse
    engineered. There's no guarantee of interoperability between different
    versions. Plus it can be vector for malware . Microsoft, for example, is
    dropping support for it.

    .docx is an open standard which is readable by pretty much all applications >> that need to.


    There are two five hundred page documents that cover office.

    One of them was used by Sun Microsystems, to build the framework
    for opening Office documents. LibreOffice fork, continues with
    the "fleshing out" of the <cough> "minor details". That's why
    the document opening step worked at all, in the FOSS side of
    the ecosystem. That wasn't reverse engineering. There's a document.

    Not everything was documented. Some things were incorporated as opaque
    binary blobs, which handled arbitrarily. Round-tripping a file via
    openoffice sometimes meant those things disappeared. Think things like mathematical formula objects.

    If you know what the attack surface is on a document type
    (executable macros), you can shut that off.

    That's a big if. Legacy code can be dropped over time and the attack vector reopens.

    That's why Microsoft are dropping .doc; they don't want the overhead of maintaining an unnecessary and potentially risky capability.

    Even a PDF
    document contains an attack surface, and one of the first
    things you do when installing Reader is you shut that off.

    It's the source of a document that matters as much as
    the attack surfaces or potential attack surfaces.

    How a .docx differs, is it uses a ZIP container for
    a series of files. But the one file that contains
    the DTP core of the document, that and the .doc need
    to have similar information inside. That doesn't mean
    that the documents are "divergent on intent". They do
    the same things, and plus or minus, there's no reason
    for the content portion of .doc and .docx to be different.

    Microsoft seldom removes attack surfaces, no matter
    what the consequences. Notice how widgets appeared,
    disappeared, and appeared again. Once they get an idea
    in their heads, it can take "basic exhaustion" of an
    idea, to get rid of it again. Common sense won't remove it :-)

    Paul







    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From J. P. Gilliver@3:633/10 to All on Thu Mar 19 17:17:59 2026
    On 2026/3/19 15:0:4, Chris wrote:
    J. P. Gilliver <G6JPG@255soft.uk> wrote:
    On 2026/3/19 7:51:25, Chris wrote:
    []
    versions. Plus it can be vector for malware . Microsoft, for example, is >>> dropping support for it.

    Oh, typical Microsoft.

    It's quite funny because in order to read older word docs you need to use Libreoffice.

    Or, old word :-)

    .docx is an open standard which is readable by pretty much all applications >>> that need to.

    Except older versions of Word. Yes, there are patches (now harder to
    find) for at least Word/Office 2003 (not sure about earlier) that will
    let them read (not sure about save) the *x versions.

    You can't expect legacy software to be forwards compatible with standards that post date them.

    I don't (though the *x reader patches _are_ useful). I don't _expect_
    anything at all; what I'd _like_ is _backwards_ compatibility. I do
    accept progress - just; I wonder what proportion of .docx/.odt/whatever documents currently being produced actually _use_ anything that wasn't
    in .doc .

    As I said above just use LibreOffice. Why bother with such an old version
    of word at all?

    Because I'm used to it. I drove a car that operates on
    suck-squeeze-bang-blow (is that called the Otto cycle?) that's a century
    or more old; sure, it has lots of modern things that have been added to
    it, but ... seriously, I _don't_ expect modern users to stick with (what
    to them are) ancient standards, I just wish _more_ attention could be
    paid to backwards compatibility - or, at least, less carelessness in the introduction of new features. But I know it'll never be; just call me a dinosaur.
    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()ALIS-Ch++(p)Ar++T+H+Sh0!:`)DNAf

    Cumulatively, however, they do get my goat, on my wick and up my nose,
    to the extent I am angry enough to stick a wick up a goat's nose and to
    hell with the consequences. - Eddie Mair, RT 2016/2/27-3/4

    --- PyGate Linux v1.5.13
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From micky@3:633/10 to All on Tue Apr 14 10:53:05 2026
    In alt.comp.os.windows-11, on Thu, 19 Mar 2026 07:59:51 -0000 (UTC),
    Chris <ithinkiam@gmail.com> wrote:

    micky <NONONOmisc07@fmguy.com> wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 16:53:59 -0400, knuttle
    <keith_nuttle@yahoo.com> wrote:

    .....
    I would second the previously made suggestion of the free Libre Office.

    In my experience it is completely compatible with MS office documents.

    When it asks me if I want to save a document as .odt or .docx, I'm not
    sure what to do If I leave it as .odt will the person I send it to who
    only has Word be able to read an .odt? With no special efforts on his
    part, just click on it?

    In theory, newer versions of Word can read .odt format files.

    Becasue I was not sure the answer above is Yes, I've saving files as
    .docx or .doc, whatever LO suggest in that box, but then it warns me
    that special features from LO may not be carried over. I don't use
    special features, except maybe Bold and colored tex. These seem old and
    pretty basic. Surely these would be carried over to MS Office, right???

    Yes. Don't worry about that. You can set LO to save files as .docx by
    default if you want.

    I didn't know that. I'm sort of overwhelmed by the sum of all the
    options in all the programs I use. I will set it that way, and then I
    don't have to think every time..

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From J. P. Gilliver@3:633/10 to All on Tue Apr 14 17:30:54 2026
    On 2026/4/14 15:53:5, micky wrote:
    In alt.comp.os.windows-11, on Thu, 19 Mar 2026 07:59:51 -0000 (UTC),
    Chris <ithinkiam@gmail.com> wrote:
    []
    Yes. Don't worry about that. You can set LO to save files as .docx by
    default if you want.

    I didn't know that. I'm sort of overwhelmed by the sum of all the
    options in all the programs I use. I will set it that way, and then I
    don't have to think every time..

    I've never used LO, but I always set Word to save as .doc (not .docx) by default; that way virtually all recipients can open what I save. Yes, in
    theory there may be features in the newer versions that the old can't
    use, and it should tell me when saving if I've used any of them; it
    never has so far.
    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()ALIS-Ch++(p)Ar++T+H+Sh0!:`)DNAf

    Money should enable life, not define worth.

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Paul@3:633/10 to All on Tue Apr 14 13:10:22 2026
    On Tue, 4/14/2026 10:53 AM, micky wrote:

    I didn't know that. I'm sort of overwhelmed by the sum of all the
    options in all the programs I use. I will set it that way, and then I
    don't have to think every time.

    We write all these additional new formats, just to make
    your brain swell and explode.

    Is it working ? :-)

    Paul

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Chris@3:633/10 to All on Tue Apr 14 19:39:55 2026
    J. P. Gilliver <G6JPG@255soft.uk> wrote:
    On 2026/4/14 15:53:5, micky wrote:
    In alt.comp.os.windows-11, on Thu, 19 Mar 2026 07:59:51 -0000 (UTC),
    Chris <ithinkiam@gmail.com> wrote:
    []
    Yes. Don't worry about that. You can set LO to save files as .docx by
    default if you want.

    I didn't know that. I'm sort of overwhelmed by the sum of all the
    options in all the programs I use. I will set it that way, and then I
    don't have to think every time..

    I've never used LO, but I always set Word to save as .doc (not .docx) by default; that way virtually all recipients can open what I save.

    If that's all you want, then pdf is better.

    Yes, in
    theory there may be features in the newer versions that the old can't
    use, and it should tell me when saving if I've used any of them; it
    never has so far.

    Problem is .doc isn't one standard. It is many. Roundtripping with .doc is
    a recipe for problems.



    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From ...w¡ñ?±?ñ@3:633/10 to All on Tue Apr 14 14:28:06 2026
    On 4/14/2026 9:30 AM, J. P. Gilliver wrote:
    I've never used LO, but I always set Word to save as .doc (not .docx) by default; that way virtually all recipients can open what I save.

    Just an fyi...
    The recipients can still experience issues with opening .doc file.

    To ensure full .doc compatibility, Word's Trust Center
    File/Options/Trust Center/Trust Center Settings/File Block Settings
    - should be configured properly to Open and Save .doc files
    Uncheck 'Open', Uncheck 'Save' for Word Binary Documents and Templates
    for each version(95, 97, 2000, 2003, and 2007 and later)

    "Microsoft began phasing out support for older .doc files, particularly
    those from Word 97-2003, with the introduction of the Office Open XML
    (.docx) format in Word 2007, and enhanced this restriction significantly
    in newer Microsoft 365 versions (around 2021-2025) to mitigate security vulnerabilities. While many versions still allow opening them, default
    "File Block" settings often prevent opening or editing them without
    manual security changes."


    --
    ...w­¤?ñ?¤

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Hank Rogers@3:633/10 to All on Tue Apr 14 16:50:32 2026
    Paul wrote on 4/14/2026 12:10 PM:
    On Tue, 4/14/2026 10:53 AM, micky wrote:

    I didn't know that. I'm sort of overwhelmed by the sum of all the
    options in all the programs I use. I will set it that way, and then I
    don't have to think every time.

    We write all these additional new formats, just to make
    your brain swell and explode.

    Is it working ? :-)

    Paul


    Why not? It worked on you for years Paul :)



    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From J. P. Gilliver@3:633/10 to All on Wed Apr 15 12:28:42 2026
    On 2026/4/14 22:28:6, ...w­¤?ñ?¤ wrote:
    On 4/14/2026 9:30 AM, J. P. Gilliver wrote:
    I've never used LO, but I always set Word to save as .doc (not .docx) by
    default; that way virtually all recipients can open what I save.

    Just an fyi...
    The recipients can still experience issues with opening .doc file.

    To ensure full .doc compatibility, Word's Trust Center
    File/Options/Trust Center/Trust Center Settings/File Block Settings
    - should be configured properly to Open and Save .doc files
    Uncheck 'Open', Uncheck 'Save' for Word Binary Documents and Templates
    for each version(95, 97, 2000, 2003, and 2007 and later)

    I was going to say "thanks, done that".

    But my Word (2003) doesn't have Options under File. There's an Options
    under Tools, but nothing that looks like what you describe there.

    "Microsoft began phasing out support for older .doc files, particularly those from Word 97-2003, with the introduction of the Office Open XML (.docx) format in Word 2007, and enhanced this restriction significantly
    in newer Microsoft 365 versions (around 2021-2025) to mitigate security vulnerabilities. While many versions still allow opening them, default
    "File Block" settings often prevent opening or editing them without
    manual security changes."

    Ah, so you mean it's the people opening them that need to do that,
    rather than me saving them.

    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()ALIS-Ch++(p)Ar++T+H+Sh0!:`)DNAf

    For this star a "night on the tiles" means winning at Scrabble
    - Kathy Lette (on Kylie), RT 2014/1/11-17

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From J. P. Gilliver@3:633/10 to All on Wed Apr 15 12:52:52 2026
    On 2026/4/14 20:39:55, Chris wrote:
    J. P. Gilliver <G6JPG@255soft.uk> wrote:
    On 2026/4/14 15:53:5, micky wrote:
    In alt.comp.os.windows-11, on Thu, 19 Mar 2026 07:59:51 -0000 (UTC),
    Chris <ithinkiam@gmail.com> wrote:
    []
    Yes. Don't worry about that. You can set LO to save files as .docx by
    default if you want.

    I didn't know that. I'm sort of overwhelmed by the sum of all the
    options in all the programs I use. I will set it that way, and then I
    don't have to think every time..

    I've never used LO, but I always set Word to save as .doc (not .docx) by
    default; that way virtually all recipients can open what I save.

    If that's all you want, then pdf is better.

    If I only want them to _read_ them, I agree. (For example, I "print" to
    PDF the various charts my genealogy software can produce, on the
    assumption that correspondents won't have the same [Brother's Keeper] or
    any genealogy software.) If I want them to be able to further _edit_
    them, .doc is a good universal - not completely of course, but most
    people have _something_ that can open a .doc for editing.

    Yes, in
    theory there may be features in the newer versions that the old can't
    use, and it should tell me when saving if I've used any of them; it
    never has so far.

    Problem is .doc isn't one standard. It is many. Roundtripping with .doc is
    a recipe for problems.

    I haven't so far had anyone say they couldn't open - or had any problems
    doing so - anything I've sent them. (I probably don't use any features
    that are only in later versions.)

    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()ALIS-Ch++(p)Ar++T+H+Sh0!:`)DNAf

    And every day in Britain, 33 properties are sold for around that price
    [a million pounds or so]. - Jane Rackham, RT 2015/4/11-17

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Paul@3:633/10 to All on Wed Apr 15 08:58:22 2026
    On Wed, 4/15/2026 7:28 AM, J. P. Gilliver wrote:

    Ah, so you mean it's the people opening them that need to do that,
    rather than me saving them.

    If your version cannot do anything whizzy, someone else is
    going to have to do it. In the Software World, we
    call this the "Wheel Of Misfortune".

    Word2003 ===> LibreOffice Writer =====> A newer version
    (review before save) that some other
    tool can use.

    It's like planning a transit bus trip.

    Paul

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Kerr-Mudd, John@3:633/10 to All on Wed Apr 15 16:17:02 2026
    On Wed, 15 Apr 2026 08:58:22 -0400
    Paul <nospam@needed.invalid> wrote:

    On Wed, 4/15/2026 7:28 AM, J. P. Gilliver wrote:

    Ah, so you mean it's the people opening them that need to do that,
    rather than me saving them.

    If your version cannot do anything whizzy, someone else is
    going to have to do it. In the Software World, we
    call this the "Wheel Of Misfortune".

    Word2003 ===> LibreOffice Writer =====> A newer version
    (review before save) that some other
    tool can use.

    It's like planning a transit bus trip.

    Oh for the days when a document meant text (maybe a bit of fonts
    & formatting) without embedding a full-blown script backdoor vulnerability.
    --
    Bah, and indeed Humbug.

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Chris@3:633/10 to All on Wed Apr 15 18:17:49 2026
    Kerr-Mudd, John <admin@127.0.0.1> wrote:
    On Wed, 15 Apr 2026 08:58:22 -0400
    Paul <nospam@needed.invalid> wrote:

    On Wed, 4/15/2026 7:28 AM, J. P. Gilliver wrote:

    Ah, so you mean it's the people opening them that need to do that,
    rather than me saving them.

    If your version cannot do anything whizzy, someone else is
    going to have to do it. In the Software World, we
    call this the "Wheel Of Misfortune".

    Word2003 ===> LibreOffice Writer =====> A newer version
    (review before save) that some other
    tool can use.

    It's like planning a transit bus trip.

    Oh for the days when a document meant text (maybe a bit of fonts
    & formatting) without embedding a full-blown script backdoor vulnerability.

    Indeed. Am a big fan of Markdown where I can and managed with git to allow
    true "tracked changes".


    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From J. P. Gilliver@3:633/10 to All on Wed Apr 15 19:26:49 2026
    On 2026/4/15 16:17:2, Kerr-Mudd, John wrote:
    On Wed, 15 Apr 2026 08:58:22 -0400
    Paul <nospam@needed.invalid> wrote:

    On Wed, 4/15/2026 7:28 AM, J. P. Gilliver wrote:

    Ah, so you mean it's the people opening them that need to do that,
    rather than me saving them.

    If your version cannot do anything whizzy, someone else is
    going to have to do it. In the Software World, we
    call this the "Wheel Of Misfortune".

    Word2003 ===> LibreOffice Writer =====> A newer ve
    rsion
    (review before save) that some other
    tool can use.

    It's like planning a transit bus trip.

    I'm not familiar with that expression. (Not sure what a "transit bus" is.
    )

    Oh for the days when a document meant text (maybe a bit of fonts
    & formatting) without embedding a full-blown script backdoor vulnerabil
    ity.

    That - the bit of fonts and formatting - is mostly what I use; for
    longer, I do use the section numbering (and cross-referencing, e. g.
    table of contents) features. but they're available from before the
    version I use.

    I _do_ use the table formatting properties, but I know I'm unusual in
    that: most people think "table: that means I must use Excel" [or more generally, a spreadsheet], whereas really you only need a spreadsheet if
    you're going to do sums on the contents (or in extremis, use sorting
    features); IMO the table formatting features in Word are more versatile,
    if you only want a grid presentation.

    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()ALIS-Ch++(p)Ar++T+H+Sh0!:`)DNAf

    1974: not one member of the British jury gave the Swedish band a single
    point.

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From ...w¡ñ?±?ñ@3:633/10 to All on Wed Apr 15 11:53:47 2026
    On 4/15/2026 4:28 AM, J. P. Gilliver wrote:
    On 2026/4/14 22:28:6, ...w­¤?ñ?¤ wrote:
    On 4/14/2026 9:30 AM, J. P. Gilliver wrote:
    I've never used LO, but I always set Word to save as .doc (not .docx) by >>> default; that way virtually all recipients can open what I save.

    Just an fyi...
    The recipients can still experience issues with opening .doc file.

    To ensure full .doc compatibility, Word's Trust Center
    File/Options/Trust Center/Trust Center Settings/File Block Settings
    - should be configured properly to Open and Save .doc files
    Uncheck 'Open', Uncheck 'Save' for Word Binary Documents and Templates
    for each version(95, 97, 2000, 2003, and 2007 and later)

    I was going to say "thanks, done that".

    But my Word (2003) doesn't have Options under File. There's an Options
    under Tools, but nothing that looks like what you describe there.

    :)
    Word 2003 does not have Trust Center. Later editions(iirc 2016, M365
    and later) do.
    i.e. the increase in restriction and Trust Center feature was deployed
    in the later editions.

    "Microsoft began phasing out support for older .doc files, particularly
    those from Word 97-2003, with the introduction of the Office Open XML
    (.docx) format in Word 2007, and enhanced this restriction significantly
    in newer Microsoft 365 versions (around 2021-2025) to mitigate security
    vulnerabilities. While many versions still allow opening them, default
    "File Block" settings often prevent opening or editing them without
    manual security changes."

    Ah, so you mean it's the people opening them that need to do that,
    rather than me saving them.

    Yes, if those 'people' experience issues *and* are using editions
    2016/M365 and later they would have the ability to configure File
    blocking restrictions and allow(by Unchecking Open and Save) for earlier edition created doc files.


    --
    ...w­¤?ñ?¤

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Char Jackson@3:633/10 to All on Wed Apr 15 20:38:43 2026
    On Wed, 15 Apr 2026 19:26:49 +0100, "J. P. Gilliver" <G6JPG@255soft.uk>
    wrote:

    On 2026/4/15 16:17:2, Kerr-Mudd, John wrote:
    On Wed, 15 Apr 2026 08:58:22 -0400
    Paul <nospam@needed.invalid> wrote:

    On Wed, 4/15/2026 7:28 AM, J. P. Gilliver wrote:

    Ah, so you mean it's the people opening them that need to do that,
    rather than me saving them.

    If your version cannot do anything whizzy, someone else is
    going to have to do it. In the Software World, we
    call this the "Wheel Of Misfortune".

    Word2003 ===> LibreOffice Writer =====> A newer version
    (review before save) that some other
    tool can use.

    It's like planning a transit bus trip.

    I'm not familiar with that expression. (Not sure what a "transit bus" is.)

    You must be posh.

    ;-)

    Oh for the days when a document meant text (maybe a bit of fonts
    & formatting) without embedding a full-blown script backdoor vulnerability.

    That - the bit of fonts and formatting - is mostly what I use; for
    longer, I do use the section numbering (and cross-referencing, e. g.
    table of contents) features. but they're available from before the
    version I use.

    I _do_ use the table formatting properties, but I know I'm unusual in
    that: most people think "table: that means I must use Excel" [or more >generally, a spreadsheet], whereas really you only need a spreadsheet if >you're going to do sums on the contents (or in extremis, use sorting >features); IMO the table formatting features in Word are more versatile,
    if you only want a grid presentation.

    A big difference, AFAIK, is that the cells in Excel are addressable via
    VBA. I don't think Word can do the same.


    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From J. P. Gilliver@3:633/10 to All on Thu Apr 16 10:15:37 2026
    On 2026/4/16 2:38:43, Char Jackson wrote:
    On Wed, 15 Apr 2026 19:26:49 +0100, "J. P. Gilliver" <G6JPG@255soft.uk> wrote:

    On 2026/4/15 16:17:2, Kerr-Mudd, John wrote:
    On Wed, 15 Apr 2026 08:58:22 -0400
    []
    It's like planning a transit bus trip.

    I'm not familiar with that expression. (Not sure what a "transit bus" is.)

    You must be posh.

    ;-)

    Not really! I think it's just that what you call a "transit bus" is
    something we call by another name.

    Oh for the days when a document meant text (maybe a bit of fonts
    & formatting) without embedding a full-blown script backdoor vulnerability. []
    I _do_ use the table formatting properties, but I know I'm unusual in
    that: most people think "table: that means I must use Excel" [or more
    generally, a spreadsheet], whereas really you only need a spreadsheet if
    you're going to do sums on the contents (or in extremis, use sorting
    features); IMO the table formatting features in Word are more versatile,
    if you only want a grid presentation.

    A big difference, AFAIK, is that the cells in Excel are addressable via
    VBA. I don't think Word can do the same.

    Probably not - since I'm only hazy about what "addressable via VBA"
    means, I'm pretty sure I don't use that feature. Visual Basic something?
    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()ALIS-Ch++(p)Ar++T+H+Sh0!:`)DNAf

    "Gentlemen, you can't fight in here: this is the war room!"
    (Dr. Strangelove)

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Paul@3:633/10 to All on Thu Apr 16 08:41:51 2026
    On Thu, 4/16/2026 5:15 AM, J. P. Gilliver wrote:
    On 2026/4/16 2:38:43, Char Jackson wrote:
    On Wed, 15 Apr 2026 19:26:49 +0100, "J. P. Gilliver" <G6JPG@255soft.uk>
    wrote:

    On 2026/4/15 16:17:2, Kerr-Mudd, John wrote:
    On Wed, 15 Apr 2026 08:58:22 -0400
    []
    It's like planning a transit bus trip.

    I'm not familiar with that expression. (Not sure what a "transit bus" is.) >>
    You must be posh.

    ;-)

    Not really! I think it's just that what you call a "transit bus" is
    something we call by another name.

    You can take a Greyhound cross-country bus trip, or you can
    take a city transit system diesel bus.

    [Picture] ride-the-bus.gif

    https://postimg.cc/BjnkZGY1

    https://imgur.com/a/SRvtC49

    My rear brake on the bicycle, crumbled yesterday.
    Didn't like the mud and water (we call that spring here) at the time, at a guess.
    That's why the Options picture above, sports an icon for bicycle safety :-)

    Paul

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From ...w¡ñ?±?ñ@3:633/10 to All on Thu Apr 16 09:25:45 2026
    On 4/16/2026 2:15 AM, J. P. Gilliver wrote:
    On 2026/4/16 2:38:43, Char Jackson wrote:
    On Wed, 15 Apr 2026 19:26:49 +0100, "J. P. Gilliver" <G6JPG@255soft.uk>
    wrote:

    On 2026/4/15 16:17:2, Kerr-Mudd, John wrote:
    On Wed, 15 Apr 2026 08:58:22 -0400
    []
    It's like planning a transit bus trip.

    I'm not familiar with that expression. (Not sure what a "transit bus" is.) >>
    You must be posh.

    ;-)

    Not really! I think it's just that what you call a "transit bus" is
    something we call by another name.

    Oh for the days when a document meant text (maybe a bit of fonts
    & formatting) without embedding a full-blown script backdoor vulnerability.
    []
    I _do_ use the table formatting properties, but I know I'm unusual in
    that: most people think "table: that means I must use Excel" [or more
    generally, a spreadsheet], whereas really you only need a spreadsheet if >>> you're going to do sums on the contents (or in extremis, use sorting
    features); IMO the table formatting features in Word are more versatile, >>> if you only want a grid presentation.

    A big difference, AFAIK, is that the cells in Excel are addressable via
    VBA. I don't think Word can do the same.

    Probably not - since I'm only hazy about what "addressable via VBA"
    means, I'm pretty sure I don't use that feature. Visual Basic something?

    VBA in Excel has a variety of capabilities, the most common use is
    creation of a macro(uses VBA to address variables like cell(s) or range
    of cell locations including columns, rows etc.) and perform actions on
    those variables when the macro is run.
    VBA(Visual Basic Application) is not a stand-alone component, but
    included in Office.

    VBA is possible in Word, one of the most common uses is creating macros
    in Word for formatting, but as Char noted it's not cell specific.

    --
    ...w­¤?ñ?¤

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Carlos E.R.@3:633/10 to All on Thu Apr 16 19:10:55 2026
    On 2026-03-18 20:39, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 16:53:59 -0400, knuttle <keith_nuttle@yahoo.com> wrote:

    On 03/15/2026 3:34 PM, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 22:46:01 +1100, Daniel70
    <daniel47@nomail.afraid.org> wrote:


    My thoughts about using Google Docs would centre around the fact that
    once Google has your Docs, Google HAS your Docs.

    I think it was a grandchild who suggested google docs. They are too
    young to be suspicious. Until after something goes wrong.

    Mind you, that's just MY assumption (and you know what they say about
    people who ASSUME!!).

    Yes, I do.

    I would second the previously made suggestion of the free Libre Office.

    In my experience it is completely compatible with MS office documents.

    When it asks me if I want to save a document as .odt or .docx, I'm not
    sure what to do If I leave it as .odt will the person I send it to who
    only has Word be able to read an .odt? With no special efforts on his
    part, just click on it?

    Becasue I was not sure the answer above is Yes, I've saving files as
    .docx or .doc, whatever LO suggest in that box, but then it warns me
    that special features from LO may not be carried over. I don't use
    special features, except maybe Bold and colored tex. These seem old and pretty basic. Surely these would be carried over to MS Office, right???

    When using LO, save in .odt, and then, if you need to send it to a
    windows chap, *also* save as .docx or something. Or if possible, export.

    Why?

    Because it may lose some some thing (unknown what), if you want to edit
    the file again. So do keep the original, and the original for LO is .odt.

    A nice feature to have would be some config in the file telling LO to
    save both in odt and docx with a single click on the save button. Or
    some other windows format.


    --
    Cheers, Carlos.
    ES??, EU??;

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Char Jackson@3:633/10 to All on Thu Apr 16 12:49:51 2026
    On Thu, 16 Apr 2026 09:25:45 -0700, ...w??? <winstonmvp@gmail.com>
    wrote:

    VBA in Excel has a variety of capabilities, the most common use is
    creation of a macro(uses VBA to address variables like cell(s) or range
    of cell locations including columns, rows etc.) and perform actions on
    those variables when the macro is run.
    VBA(Visual Basic Application) is not a stand-alone component, but
    included in Office.

    VBA is possible in Word, one of the most common uses is creating macros
    in Word for formatting, but as Char noted it's not cell specific.

    Excellent summary, thanks.


    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Chris@3:633/10 to All on Thu Apr 16 20:24:36 2026
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-03-18 20:39, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 16:53:59 -0400, knuttle
    <keith_nuttle@yahoo.com> wrote:

    On 03/15/2026 3:34 PM, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 22:46:01 +1100, Daniel70 >>>> <daniel47@nomail.afraid.org> wrote:


    My thoughts about using Google Docs would centre around the fact that >>>>> once Google has your Docs, Google HAS your Docs.

    I think it was a grandchild who suggested google docs. They are too
    young to be suspicious. Until after something goes wrong.

    Mind you, that's just MY assumption (and you know what they say about >>>>> people who ASSUME!!).

    Yes, I do.

    I would second the previously made suggestion of the free Libre Office.

    In my experience it is completely compatible with MS office documents.

    When it asks me if I want to save a document as .odt or .docx, I'm not
    sure what to do If I leave it as .odt will the person I send it to who
    only has Word be able to read an .odt? With no special efforts on his
    part, just click on it?

    Becasue I was not sure the answer above is Yes, I've saving files as
    .docx or .doc, whatever LO suggest in that box, but then it warns me
    that special features from LO may not be carried over. I don't use
    special features, except maybe Bold and colored tex. These seem old and
    pretty basic. Surely these would be carried over to MS Office, right???

    When using LO, save in .odt, and then, if you need to send it to a
    windows chap, *also* save as .docx or something. Or if possible, export.

    Why?

    Because it may lose some some thing (unknown what), if you want to edit
    the file again. So do keep the original, and the original for LO is .odt.

    A nice feature to have would be some config in the file telling LO to
    save both in odt and docx with a single click on the save button. Or
    some other windows format.

    I suggest that's unnecessary. Word will happily open and edit .odt
    natively. This is native behaviour since 2013.


    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Paul@3:633/10 to All on Thu Apr 16 17:50:38 2026
    On Thu, 4/16/2026 4:24 PM, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-03-18 20:39, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 16:53:59 -0400, knuttle
    <keith_nuttle@yahoo.com> wrote:

    On 03/15/2026 3:34 PM, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 22:46:01 +1100, Daniel70 >>>>> <daniel47@nomail.afraid.org> wrote:


    My thoughts about using Google Docs would centre around the fact that >>>>>> once Google has your Docs, Google HAS your Docs.

    I think it was a grandchild who suggested google docs. They are too >>>>> young to be suspicious. Until after something goes wrong.

    Mind you, that's just MY assumption (and you know what they say about >>>>>> people who ASSUME!!).

    Yes, I do.

    I would second the previously made suggestion of the free Libre Office. >>>>
    In my experience it is completely compatible with MS office documents.

    When it asks me if I want to save a document as .odt or .docx, I'm not
    sure what to do If I leave it as .odt will the person I send it to who
    only has Word be able to read an .odt? With no special efforts on his
    part, just click on it?

    Becasue I was not sure the answer above is Yes, I've saving files as
    .docx or .doc, whatever LO suggest in that box, but then it warns me
    that special features from LO may not be carried over. I don't use
    special features, except maybe Bold and colored tex. These seem old and >>> pretty basic. Surely these would be carried over to MS Office, right???

    When using LO, save in .odt, and then, if you need to send it to a
    windows chap, *also* save as .docx or something. Or if possible, export.

    Why?

    Because it may lose some some thing (unknown what), if you want to edit
    the file again. So do keep the original, and the original for LO is .odt.

    A nice feature to have would be some config in the file telling LO to
    save both in odt and docx with a single click on the save button. Or
    some other windows format.

    I suggest that's unnecessary. Word will happily open and edit .odt
    natively. This is native behaviour since 2013.

    I'd start by asking the other person what they've got for tools,
    as you know some will answer "Macwrite" and others it will be
    "WordPerfect". And then you've got more of a challenge ahead of you.

    Paul

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Steve Hayes@3:633/10 to All on Fri Apr 17 02:33:17 2026
    On Wed, 15 Apr 2026 16:17:02 +0100, "Kerr-Mudd, John"
    <admin@127.0.0.1> wrote:

    On Wed, 15 Apr 2026 08:58:22 -0400
    Paul <nospam@needed.invalid> wrote:

    On Wed, 4/15/2026 7:28 AM, J. P. Gilliver wrote:

    Ah, so you mean it's the people opening them that need to do that,
    rather than me saving them.

    If your version cannot do anything whizzy, someone else is
    going to have to do it. In the Software World, we
    call this the "Wheel Of Misfortune".

    Word2003 ===> LibreOffice Writer =====> A newer version
    (review before save) that some other
    tool can use.

    It's like planning a transit bus trip.

    Oh for the days when a document meant text (maybe a bit of fonts
    & formatting) without embedding a full-blown script backdoor vulnerability.

    RTF does that, and most word processors can handle it.

    I use LibreOffice for .docx, Word97 for .doc.


    --
    Steve Hayes from Tshwane, South Africa
    Web: http://www.khanya.org.za/stevesig.htm
    Blog: http://methodius.blogspot.com
    E-mail - see web page, or parse: shayes at dunelm full stop org full stop uk

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Hank Rogers@3:633/10 to All on Thu Apr 16 19:33:38 2026
    Paul wrote on 4/16/2026 4:50 PM:
    On Thu, 4/16/2026 4:24 PM, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-03-18 20:39, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 16:53:59 -0400, knuttle >>>> <keith_nuttle@yahoo.com> wrote:

    On 03/15/2026 3:34 PM, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 22:46:01 +1100, Daniel70 >>>>>> <daniel47@nomail.afraid.org> wrote:


    My thoughts about using Google Docs would centre around the fact that >>>>>>> once Google has your Docs, Google HAS your Docs.

    I think it was a grandchild who suggested google docs. They are too >>>>>> young to be suspicious. Until after something goes wrong.

    Mind you, that's just MY assumption (and you know what they say about >>>>>>> people who ASSUME!!).

    Yes, I do.

    I would second the previously made suggestion of the free Libre Office. >>>>>
    In my experience it is completely compatible with MS office documents. >>>>
    When it asks me if I want to save a document as .odt or .docx, I'm not >>>> sure what to do If I leave it as .odt will the person I send it to who >>>> only has Word be able to read an .odt? With no special efforts on his >>>> part, just click on it?

    Becasue I was not sure the answer above is Yes, I've saving files as
    .docx or .doc, whatever LO suggest in that box, but then it warns me
    that special features from LO may not be carried over. I don't use
    special features, except maybe Bold and colored tex. These seem old and >>>> pretty basic. Surely these would be carried over to MS Office, right??? >>>
    When using LO, save in .odt, and then, if you need to send it to a
    windows chap, *also* save as .docx or something. Or if possible, export. >>>
    Why?

    Because it may lose some some thing (unknown what), if you want to edit
    the file again. So do keep the original, and the original for LO is .odt. >>>
    A nice feature to have would be some config in the file telling LO to
    save both in odt and docx with a single click on the save button. Or
    some other windows format.

    I suggest that's unnecessary. Word will happily open and edit .odt
    natively. This is native behaviour since 2013.

    I'd start by asking the other person what they've got for tools,
    as you know some will answer "Macwrite" and others it will be
    "WordPerfect". And then you've got more of a challenge ahead of you.

    Paul


    And a lot of work for you too Paul.



    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Steve Hayes@3:633/10 to All on Fri Apr 17 02:39:19 2026
    On Thu, 16 Apr 2026 08:41:51 -0400, Paul <nospam@needed.invalid>
    wrote:

    On Thu, 4/16/2026 5:15 AM, J. P. Gilliver wrote:
    On 2026/4/16 2:38:43, Char Jackson wrote:
    On Wed, 15 Apr 2026 19:26:49 +0100, "J. P. Gilliver" <G6JPG@255soft.uk>
    wrote:

    On 2026/4/15 16:17:2, Kerr-Mudd, John wrote:
    On Wed, 15 Apr 2026 08:58:22 -0400
    []
    It's like planning a transit bus trip.

    I'm not familiar with that expression. (Not sure what a "transit bus" is.) >>>
    You must be posh.

    ;-)

    Not really! I think it's just that what you call a "transit bus" is
    something we call by another name.

    You can take a Greyhound cross-country bus trip, or you can
    take a city transit system diesel bus.

    In the UK the "Greyhound"-type vehicle is usually called a "coach".


    --
    Steve Hayes from Tshwane, South Africa
    Web: http://www.khanya.org.za/stevesig.htm
    Blog: http://methodius.blogspot.com
    E-mail - see web page, or parse: shayes at dunelm full stop org full stop uk

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Steve Hayes@3:633/10 to All on Fri Apr 17 02:42:29 2026
    On Thu, 16 Apr 2026 17:50:38 -0400, Paul <nospam@needed.invalid>
    wrote:

    I'd start by asking the other person what they've got for tools,
    as you know some will answer "Macwrite" and others it will be
    "WordPerfect". And then you've got more of a challenge ahead of you.

    Any suggestions for editing/converting Lotus AmiPro or WordPro docs?


    --
    Steve Hayes from Tshwane, South Africa
    Web: http://www.khanya.org.za/stevesig.htm
    Blog: http://methodius.blogspot.com
    E-mail - see web page, or parse: shayes at dunelm full stop org full stop uk

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Carlos E.R.@3:633/10 to All on Fri Apr 17 09:08:30 2026
    On 2026-04-16 22:24, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:


    When using LO, save in .odt, and then, if you need to send it to a
    windows chap, *also* save as .docx or something. Or if possible, export.

    Why?

    Because it may lose some some thing (unknown what), if you want to edit
    the file again. So do keep the original, and the original for LO is .odt.

    A nice feature to have would be some config in the file telling LO to
    save both in odt and docx with a single click on the save button. Or
    some other windows format.

    I suggest that's unnecessary. Word will happily open and edit .odt
    natively. This is native behaviour since 2013.

    Yes, but windows people bitch about it. Specially the non technical
    guys/gals.

    Also I am not sure if recipient has the required word version or plugin
    or whatever.


    --
    Cheers, Carlos.
    ES??, EU??;

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Carlos E.R.@3:633/10 to All on Fri Apr 17 09:09:42 2026
    On 2026-04-17 09:08, Carlos E.R. wrote:
    On 2026-04-16 22:24, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:


    When using LO, save in .odt, and then, if you need to send it to a
    windows chap, *also* save as .docx or something. Or if possible, export. >>>
    Why?

    Because it may lose some some thing (unknown what), if you want to edit
    the file again. So do keep the original, and the original for LO
    is .odt.

    A nice feature to have would be some config in the file telling LO to
    save both in odt and docx with a single click on the save button. Or
    some other windows format.

    I suggest that's unnecessary. Word will happily open and edit .odt
    natively. This is native behaviour since 2013.

    Yes, but windows people bitch about it. Specially the non technical guys/gals.

    Also I am not sure if recipient has the required word version or plugin
    or whatever.

    Oh, I forgot that sometimes my recipients use Android.

    --
    Cheers, Carlos.
    ES??, EU??;

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Paul@3:633/10 to All on Fri Apr 17 03:46:04 2026
    On Thu, 4/16/2026 8:33 PM, Steve Hayes wrote:
    On Wed, 15 Apr 2026 16:17:02 +0100, "Kerr-Mudd, John"
    <admin@127.0.0.1> wrote:

    On Wed, 15 Apr 2026 08:58:22 -0400
    Paul <nospam@needed.invalid> wrote:

    On Wed, 4/15/2026 7:28 AM, J. P. Gilliver wrote:

    Ah, so you mean it's the people opening them that need to do that,
    rather than me saving them.

    If your version cannot do anything whizzy, someone else is
    going to have to do it. In the Software World, we
    call this the "Wheel Of Misfortune".

    Word2003 ===> LibreOffice Writer =====> A newer version
    (review before save) that some other
    tool can use.

    It's like planning a transit bus trip.

    Oh for the days when a document meant text (maybe a bit of fonts
    & formatting) without embedding a full-blown script backdoor vulnerability.

    RTF does that, and most word processors can handle it.

    I use LibreOffice for .docx, Word97 for .doc.

    RTF was a great concept, but in all the times I tested
    that as part of building the Great Matrix of DTP tools,
    it always failed to work properly.

    Making it a binary format was just stupid.

    A competing product uses text for their
    intermediate format, and that allows constructing documents
    using computer programs. That's how Intel makes their
    4096 page "Instruction Set" document, the content is
    extracted from chip designs. It's hard to say
    whether any human at Intel, proof-read the entire
    4096 pages before release. But that's one of the
    advantages of a textual intermediate format, is you
    can script the generation of info in the doc.

    Paul



    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Paul@3:633/10 to All on Fri Apr 17 04:16:01 2026
    On Thu, 4/16/2026 8:42 PM, Steve Hayes wrote:
    On Thu, 16 Apr 2026 17:50:38 -0400, Paul <nospam@needed.invalid>
    wrote:

    I'd start by asking the other person what they've got for tools,
    as you know some will answer "Macwrite" and others it will be
    "WordPerfect". And then you've got more of a challenge ahead of you.

    Any suggestions for editing/converting Lotus AmiPro or WordPro docs?

    At work, you'd ask the IT department.

    I only looked into things like this, so we'd have at least
    a few methods for dealing with weird stuff.

    We used multiple ecosystems at work, so having someone
    shoot you a MacWrite was a possibility, while you were
    sitting at your UNIX box. The managers had IBM PC compatibles.
    There was no Office on the UNIX box, but there was a
    copy of SoftWindows (too slow for practical work).

    I didn't even have a conventional web browser on the UNIX box,
    all I had was a copy of Lynx. While the picture here, shows two lines
    of text being duplicated, in fact daily usage of Lynx would find a
    single line of text repeated four times. Most of the displays done
    using Lynx, looked just awful, and not as clean and simple as
    this contrived example. The person who made this, did not want
    to expose the horrors of this browser. My main purpose of using
    Lynx at the time, was to download chip specs for engineering.
    I wasn't looking for cat photos.

    https://simple.wikipedia.org/wiki/Lynx_%28web_browser%29#/media/File:Lynx-wikipedia.png

    I even had the misfortune one day, of getting files in and out
    of a computer *that had no network interface, no NIC*. That was great fun.
    I learned a lot.

    Paul

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From ...w¡ñ?±?ñ@3:633/10 to All on Fri Apr 17 01:33:09 2026
    On 4/16/2026 10:49 AM, Char Jackson wrote:
    On Thu, 16 Apr 2026 09:25:45 -0700, ...w­¤?ñ?¤ <winstonmvp@gmail.com>
    wrote:

    VBA in Excel has a variety of capabilities, the most common use is
    creation of a macro(uses VBA to address variables like cell(s) or range
    of cell locations including columns, rows etc.) and perform actions on
    those variables when the macro is run.
    VBA(Visual Basic Application) is not a stand-alone component, but
    included in Office.

    VBA is possible in Word, one of the most common uses is creating macros
    in Word for formatting, but as Char noted it's not cell specific.

    Excellent summary, thanks.


    Thanks.
    I've been using a variety and specific purpose macros in Excel for more
    years than I can remember. For my Word usage, only a few since Word
    97(iirc, the first to include/support VBA) - similar my earlier comment
    for formatting and typically on the blank new document where default
    option settings are not select-able.

    --
    ...w­¤?ñ?¤

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Paul@3:633/10 to All on Fri Apr 17 05:04:34 2026
    On Thu, 4/16/2026 9:26 PM, Daniel70 wrote:
    On 17/04/2026 10:42 am, Steve Hayes wrote:
    On Thu, 16 Apr 2026 17:50:38 -0400, Paul <nospam@needed.invalid>
    wrote:

    I'd start by asking the other person what they've got for tools,
    as you know some will answer "Macwrite" and others it will be
    "WordPerfect". And then you've got more of a challenge ahead of you.

    Any suggestions for editing/converting Lotus AmiPro or WordPro docs?

    WOW!! Are you in my head .... cause I just tried to go to LotusOffice.com in Firefox to see if it still existed. It doesn't.

    I used LotusOffice Suite when I was in Australia Army back in the 1990's. Lotus gave the Army or Defence 'permission'/'Licence' to copy and use their product at Home and at Work.

    I guess they were trying to get some sort of Market penetration.

    This isn't working for me right now, but this is a stab at a URL.

    https://web.archive.org/web/20041204001636/http://lotusoffice.com:80/

    And the "work and home" option exists for multiple products when
    sold in large license purchases. While you might think that is unusual,
    it's not actually. You can probably work deals like that, at the 10,000+
    seat level. An Army could swing that. If you're only buying 5 copies,
    no, you don't get that.

    For large purchases, the terms are under NDA, and are not shared
    with the populace at large. The seller does not want it known
    what discounts are available.

    Paul

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From J. P. Gilliver@3:633/10 to All on Fri Apr 17 21:36:01 2026
    On 2026/4/17 1:33:17, Steve Hayes wrote:
    On Wed, 15 Apr 2026 16:17:02 +0100, "Kerr-Mudd, John"
    <admin@127.0.0.1> wrote:

    On Wed, 15 Apr 2026 08:58:22 -0400
    Paul <nospam@needed.invalid> wrote:

    On Wed, 4/15/2026 7:28 AM, J. P. Gilliver wrote:

    Ah, so you mean it's the people opening them that need to do that,
    rather than me saving them.

    If your version cannot do anything whizzy, someone else is
    going to have to do it. In the Software World, we
    call this the "Wheel Of Misfortune".

    Word2003 ===> LibreOffice Writer =====> A newer version
    (review before save) that some other
    tool can use.

    It's like planning a transit bus trip.

    After the sidebar for "transit bus", I've parsed the original sentence:
    I think the problem is the assumption that _anyone_ actually _wants_ to
    do anything "whizzy"! You're right of course, but nothing I've been
    involved with - and that includes the village plan for my, er, village -
    has needed anything more "whizzy" than my Word 2003 could handle. (That included assorted tables, cross-references, and was in columns.)

    Oh for the days when a document meant text (maybe a bit of fonts
    & formatting) without embedding a full-blown script backdoor vulnerability.

    RTF does that, and most word processors can handle it.

    I use LibreOffice for .docx, Word97 for .doc.

    Interesting. Do you actually use the extras that .docx offers?

    If you save what had been .docx as .doc in LibreOffice, does it tell you
    which features you've used that will be lost?

    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()ALIS-Ch++(p)Ar++T+H+Sh0!:`)DNAf

    B T Plusnet, a bit kinda like P T Barnum ...
    ... but quite often appears to feature more clowns
    - "mikeb", 2024-4

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From J. P. Gilliver@3:633/10 to All on Fri Apr 17 21:44:14 2026
    On 2026/4/17 10:4:34, Paul wrote:
    On Thu, 4/16/2026 9:26 PM, Daniel70 wrote:
    On 17/04/2026 10:42 am, Steve Hayes wrote:
    On Thu, 16 Apr 2026 17:50:38 -0400, Paul <nospam@needed.invalid>
    wrote:

    I'd start by asking the other person what they've got for tools,
    as you know some will answer "Macwrite" and others it will be
    "WordPerfect". And then you've got more of a challenge ahead of you.

    Any suggestions for editing/converting Lotus AmiPro or WordPro docs?

    WOW!! Are you in my head .... cause I just tried to go to LotusOffice.com in Firefox to see if it still existed. It doesn't.

    I used LotusOffice Suite when I was in Australia Army back in the 1990's. >> Lotus gave the Army or Defence 'permission'/'Licence' to copy and use their product at Home and at Work.

    I guess they were trying to get some sort of Market penetration.

    This isn't working for me right now, but this is a stab at a URL.

    https://web.archive.org/web/20041204001636/http://lotusoffice.com:80/

    And the "work and home" option exists for multiple products when
    sold in large license purchases. While you might think that is unusual,
    it's not actually. You can probably work deals like that, at the 10,000+
    seat level. An Army could swing that. If you're only buying 5 copies,
    no, you don't get that.

    For large purchases, the terms are under NDA, and are not shared
    with the populace at large. The seller does not want it known
    what discounts are available.

    Paul

    We had that, for a couple of Office products (large multinational
    company). The main one was that if you left the company's employ, you
    were _supposed_ to remove the software from your home machine. I don't
    know how many do! (I'm not sure if I ever _used_ it - it included 2007,
    and I think another - might have been one free, the other very cheap, or something like that. The 2003 I actually _do_ use, I think I bought,
    though almost certainly at a discount when it wasn't the latest.)
    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()ALIS-Ch++(p)Ar++T+H+Sh0!:`)DNAf

    B T Plusnet, a bit kinda like P T Barnum ...
    ... but quite often appears to feature more clowns
    - "mikeb", 2024-4

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Chris@3:633/10 to All on Fri Apr 17 22:40:31 2026
    Paul <nospam@needed.invalid> wrote:
    On Thu, 4/16/2026 4:24 PM, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-03-18 20:39, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 16:53:59 -0400, knuttle >>>> <keith_nuttle@yahoo.com> wrote:

    On 03/15/2026 3:34 PM, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 22:46:01 +1100, Daniel70 >>>>>> <daniel47@nomail.afraid.org> wrote:


    My thoughts about using Google Docs would centre around the fact that >>>>>>> once Google has your Docs, Google HAS your Docs.

    I think it was a grandchild who suggested google docs. They are too >>>>>> young to be suspicious. Until after something goes wrong.

    Mind you, that's just MY assumption (and you know what they say about >>>>>>> people who ASSUME!!).

    Yes, I do.

    I would second the previously made suggestion of the free Libre Office. >>>>>
    In my experience it is completely compatible with MS office documents. >>>>
    When it asks me if I want to save a document as .odt or .docx, I'm not >>>> sure what to do If I leave it as .odt will the person I send it to who >>>> only has Word be able to read an .odt? With no special efforts on his >>>> part, just click on it?

    Becasue I was not sure the answer above is Yes, I've saving files as
    .docx or .doc, whatever LO suggest in that box, but then it warns me
    that special features from LO may not be carried over. I don't use
    special features, except maybe Bold and colored tex. These seem old and >>>> pretty basic. Surely these would be carried over to MS Office, right??? >>>
    When using LO, save in .odt, and then, if you need to send it to a
    windows chap, *also* save as .docx or something. Or if possible, export. >>>
    Why?

    Because it may lose some some thing (unknown what), if you want to edit >>> the file again. So do keep the original, and the original for LO is .odt. >>>
    A nice feature to have would be some config in the file telling LO to
    save both in odt and docx with a single click on the save button. Or
    some other windows format.

    I suggest that's unnecessary. Word will happily open and edit .odt
    natively. This is native behaviour since 2013.

    I'd start by asking the other person what they've got for tools,
    as you know some will answer "Macwrite" and others it will be
    "WordPerfect". And then you've got more of a challenge ahead of you.


    Both docx and odt are open standards and can be read by most uptodate
    software. Either is a good choice.


    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Chris@3:633/10 to All on Fri Apr 17 22:40:33 2026
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-04-17 09:08, Carlos E.R. wrote:
    On 2026-04-16 22:24, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:


    When using LO, save in .odt, and then, if you need to send it to a
    windows chap, *also* save as .docx or something. Or if possible, export. >>>>
    Why?

    Because it may lose some some thing (unknown what), if you want to edit >>>> the file again. So do keep the original, and the original for LO
    is .odt.

    A nice feature to have would be some config in the file telling LO to
    save both in odt and docx with a single click on the save button. Or
    some other windows format.

    I suggest that's unnecessary. Word will happily open and edit .odt
    natively. This is native behaviour since 2013.

    Yes, but windows people bitch about it. Specially the non technical
    guys/gals.

    Also I am not sure if recipient has the required word version or plugin
    or whatever.

    Oh, I forgot that sometimes my recipients use Android.

    So? Lots of odt apps out there. Like google docs.


    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Paul@3:633/10 to All on Fri Apr 17 18:42:21 2026
    On Fri, 4/17/2026 4:36 PM, J. P. Gilliver wrote:
    On 2026/4/17 1:33:17, Steve Hayes wrote:
    On Wed, 15 Apr 2026 16:17:02 +0100, "Kerr-Mudd, John"
    <admin@127.0.0.1> wrote:

    On Wed, 15 Apr 2026 08:58:22 -0400
    Paul <nospam@needed.invalid> wrote:

    On Wed, 4/15/2026 7:28 AM, J. P. Gilliver wrote:

    Ah, so you mean it's the people opening them that need to do that,
    rather than me saving them.

    If your version cannot do anything whizzy, someone else is
    going to have to do it. In the Software World, we
    call this the "Wheel Of Misfortune".

    Word2003 ===> LibreOffice Writer =====> A newer version
    (review before save) that some other
    tool can use.

    It's like planning a transit bus trip.

    After the sidebar for "transit bus", I've parsed the original sentence:
    I think the problem is the assumption that _anyone_ actually _wants_ to
    do anything "whizzy"! You're right of course, but nothing I've been
    involved with - and that includes the village plan for my, er, village -
    has needed anything more "whizzy" than my Word 2003 could handle. (That included assorted tables, cross-references, and was in columns.)

    Oh for the days when a document meant text (maybe a bit of fonts
    & formatting) without embedding a full-blown script backdoor vulnerability. >>
    RTF does that, and most word processors can handle it.

    I use LibreOffice for .docx, Word97 for .doc.

    Interesting. Do you actually use the extras that .docx offers?

    If you save what had been .docx as .doc in LibreOffice, does it tell you which features you've used that will be lost?


    You do not expect a "table" to fail, but typical bar-bet testing
    is to put a table within a table within a table. And that causes
    a lot of DTP things some indigestion. So rather than it being
    a primitive that won't save or has a representation, it's the
    ability to use it multiple times in nested fashion that can come
    to grief.

    It should be remembered that Office itself, could not always
    pass the "identity function". You could prepare a document in
    your favorite extension, save, then re-open the item and
    find graphical elements missing in there. It hardly seems
    reasonable, when you cannot eat your own-prepared lunch,
    that you would have the analytical skill to tell what output
    elements you weren't emitting. It might well be that in
    the identity test "save", that crap had silently gone missing
    and this is why opening the file again was not quite the same.

    I found the whole thing rather sad, which is why I stopped
    doing this after a while. It was "serving no purpose and
    making the inmates angry".

    From a tactical perspective, we don't expect the four
    heading styles and an inserted table or image, to foul up,
    but on the other hand, some of the simplest of test cases
    can still fail. Even if a DTP has a compatibility dialog
    indicating lost constructs, if it can't pass the identity
    function then it is unlikely to have bullet-proof
    compatibility indicators either.

    I've had some pretty weird outputs in LibreOffice, but
    this was caused by them changing their "output subsystem"
    for PDF, before it was ripe. At one time, this might
    have been Cairo, and some of the output was emitted
    as bitmaps, instead of more efficient vector representations.
    At one point, LO did not have a typographer who could hand
    fonts. One attempt to print, caused all the text to be
    double-printed, with a sub-pixel offset, which was most
    disconcerting. But with time, they passed these milestones,
    by finishing Cairo and then changing it to something else
    (you know, when you're bored with a new toy and you
    must try another new toy).

    One issue I had with LO, was how they treated people in
    their forums, but I guess that is also water under the bridge.
    Anyone who has been there, knows what I'm talking about,
    the "gong show behavior" ("thread closed").

    Paul

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Chris@3:633/10 to All on Fri Apr 17 22:44:54 2026
    Steve Hayes <hayesstw@telkomsa.net> wrote:
    On Thu, 16 Apr 2026 17:50:38 -0400, Paul <nospam@needed.invalid>
    wrote:

    I'd start by asking the other person what they've got for tools,
    as you know some will answer "Macwrite" and others it will be
    "WordPerfect". And then you've got more of a challenge ahead of you.

    Any suggestions for editing/converting Lotus AmiPro or WordPro docs?

    God, that takes me back. Ami Pro was so much better than Word back in the
    day.


    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Carlos E.R.@3:633/10 to All on Sat Apr 18 02:12:39 2026
    On 2026-04-17 22:36, J. P. Gilliver wrote:
    On 2026/4/17 1:33:17, Steve Hayes wrote:
    On Wed, 15 Apr 2026 16:17:02 +0100, "Kerr-Mudd, John"
    <admin@127.0.0.1> wrote:

    ...

    RTF does that, and most word processors can handle it.

    I use LibreOffice for .docx, Word97 for .doc.

    Interesting. Do you actually use the extras that .docx offers?

    If you save what had been .docx as .doc in LibreOffice, does it tell you which features you've used that will be lost?

    Nope.

    --
    Cheers, Carlos.
    ES??, EU??;

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Carlos E.R.@3:633/10 to All on Sat Apr 18 02:14:34 2026
    On 2026-04-18 00:40, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-04-17 09:08, Carlos E.R. wrote:
    On 2026-04-16 22:24, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:


    When using LO, save in .odt, and then, if you need to send it to a
    windows chap, *also* save as .docx or something. Or if possible, export. >>>>>
    Why?

    Because it may lose some some thing (unknown what), if you want to edit >>>>> the file again. So do keep the original, and the original for LO
    is .odt.

    A nice feature to have would be some config in the file telling LO to >>>>> save both in odt and docx with a single click on the save button. Or >>>>> some other windows format.

    I suggest that's unnecessary. Word will happily open and edit .odt
    natively. This is native behaviour since 2013.

    Yes, but windows people bitch about it. Specially the non technical
    guys/gals.

    Also I am not sure if recipient has the required word version or plugin
    or whatever.

    Oh, I forgot that sometimes my recipients use Android.

    So? Lots of odt apps out there. Like google docs.

    I would not use Google docs to read a contract, and hope it remains private.

    And no, when I looked there was nothing to edit odt in android. Maybe
    there is something now.

    --
    Cheers, Carlos.
    ES??, EU??;

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Chris@3:633/10 to All on Sat Apr 18 09:18:30 2026
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-04-18 00:40, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-04-17 09:08, Carlos E.R. wrote:
    On 2026-04-16 22:24, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:


    When using LO, save in .odt, and then, if you need to send it to a >>>>>> windows chap, *also* save as .docx or something. Or if possible, export. >>>>>>
    Why?

    Because it may lose some some thing (unknown what), if you want to edit >>>>>> the file again. So do keep the original, and the original for LO
    is .odt.

    A nice feature to have would be some config in the file telling LO to >>>>>> save both in odt and docx with a single click on the save button. Or >>>>>> some other windows format.

    I suggest that's unnecessary. Word will happily open and edit .odt
    natively. This is native behaviour since 2013.

    Yes, but windows people bitch about it. Specially the non technical
    guys/gals.

    Also I am not sure if recipient has the required word version or plugin >>>> or whatever.

    Oh, I forgot that sometimes my recipients use Android.

    So? Lots of odt apps out there. Like google docs.

    I would not use Google docs to read a contract, and hope it remains private.

    That's a personal choice. Doesn't change the fact that docx is unnecessary
    for cross platform compatibility. Odt is sufficient.

    And no, when I looked there was nothing to edit odt in android. Maybe
    there is something now.

    https://play.google.com/store/apps/details?id=odt.document.reader.odt.document.editor.libreoffice





    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Carlos E.R.@3:633/10 to All on Sat Apr 18 13:10:35 2026
    On 2026-04-18 00:40, Chris wrote:
    Paul <nospam@needed.invalid> wrote:
    On Thu, 4/16/2026 4:24 PM, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-03-18 20:39, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 16:53:59 -0400, knuttle >>>>> <keith_nuttle@yahoo.com> wrote:

    On 03/15/2026 3:34 PM, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 22:46:01 +1100, Daniel70 >>>>>>> <daniel47@nomail.afraid.org> wrote:


    My thoughts about using Google Docs would centre around the fact that >>>>>>>> once Google has your Docs, Google HAS your Docs.

    I think it was a grandchild who suggested google docs. They are too >>>>>>> young to be suspicious. Until after something goes wrong.

    Mind you, that's just MY assumption (and you know what they say about >>>>>>>> people who ASSUME!!).

    Yes, I do.

    I would second the previously made suggestion of the free Libre Office. >>>>>>
    In my experience it is completely compatible with MS office documents. >>>>>
    When it asks me if I want to save a document as .odt or .docx, I'm not >>>>> sure what to do If I leave it as .odt will the person I send it to who >>>>> only has Word be able to read an .odt? With no special efforts on his >>>>> part, just click on it?

    Becasue I was not sure the answer above is Yes, I've saving files as >>>>> .docx or .doc, whatever LO suggest in that box, but then it warns me >>>>> that special features from LO may not be carried over. I don't use
    special features, except maybe Bold and colored tex. These seem old and >>>>> pretty basic. Surely these would be carried over to MS Office, right??? >>>>
    When using LO, save in .odt, and then, if you need to send it to a
    windows chap, *also* save as .docx or something. Or if possible, export. >>>>
    Why?

    Because it may lose some some thing (unknown what), if you want to edit >>>> the file again. So do keep the original, and the original for LO is .odt. >>>>
    A nice feature to have would be some config in the file telling LO to
    save both in odt and docx with a single click on the save button. Or
    some other windows format.

    I suggest that's unnecessary. Word will happily open and edit .odt
    natively. This is native behaviour since 2013.

    I'd start by asking the other person what they've got for tools,
    as you know some will answer "Macwrite" and others it will be
    "WordPerfect". And then you've got more of a challenge ahead of you.


    Both docx and odt are open standards and can be read by most uptodate software. Either is a good choice.


    Word doesn't need a plugin?

    --
    Cheers, Carlos.
    ES??, EU??;

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Chris@3:633/10 to All on Sat Apr 18 13:38:08 2026
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-04-18 00:40, Chris wrote:
    Paul <nospam@needed.invalid> wrote:
    On Thu, 4/16/2026 4:24 PM, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-03-18 20:39, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 16:53:59 -0400, knuttle >>>>>> <keith_nuttle@yahoo.com> wrote:

    On 03/15/2026 3:34 PM, micky wrote:
    In alt.comp.os.windows-11, on Sun, 15 Mar 2026 22:46:01 +1100, Daniel70
    <daniel47@nomail.afraid.org> wrote:


    My thoughts about using Google Docs would centre around the fact that >>>>>>>>> once Google has your Docs, Google HAS your Docs.

    I think it was a grandchild who suggested google docs. They are too >>>>>>>> young to be suspicious. Until after something goes wrong.

    Mind you, that's just MY assumption (and you know what they say about >>>>>>>>> people who ASSUME!!).

    Yes, I do.

    I would second the previously made suggestion of the free Libre Office. >>>>>>>
    In my experience it is completely compatible with MS office documents. >>>>>>
    When it asks me if I want to save a document as .odt or .docx, I'm not >>>>>> sure what to do If I leave it as .odt will the person I send it to who >>>>>> only has Word be able to read an .odt? With no special efforts on his >>>>>> part, just click on it?

    Becasue I was not sure the answer above is Yes, I've saving files as >>>>>> .docx or .doc, whatever LO suggest in that box, but then it warns me >>>>>> that special features from LO may not be carried over. I don't use >>>>>> special features, except maybe Bold and colored tex. These seem old and >>>>>> pretty basic. Surely these would be carried over to MS Office, right??? >>>>>
    When using LO, save in .odt, and then, if you need to send it to a
    windows chap, *also* save as .docx or something. Or if possible, export. >>>>>
    Why?

    Because it may lose some some thing (unknown what), if you want to edit >>>>> the file again. So do keep the original, and the original for LO is .odt. >>>>>
    A nice feature to have would be some config in the file telling LO to >>>>> save both in odt and docx with a single click on the save button. Or >>>>> some other windows format.

    I suggest that's unnecessary. Word will happily open and edit .odt
    natively. This is native behaviour since 2013.

    I'd start by asking the other person what they've got for tools,
    as you know some will answer "Macwrite" and others it will be
    "WordPerfect". And then you've got more of a challenge ahead of you.


    Both docx and odt are open standards and can be read by most uptodate
    software. Either is a good choice.


    Word doesn't need a plugin?

    Nope. Maybe in the very early days in 2013 or so it did, but not now. I checked. It works transparently.


    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From J. P. Gilliver@3:633/10 to All on Sat Apr 18 15:07:52 2026
    On 2026/4/18 14:38:8, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-04-18 00:40, Chris wrote:
    []
    Both docx and odt are open standards and can be read by most uptodate
    software. Either is a good choice.


    Word doesn't need a plugin?

    Nope. Maybe in the very early days in 2013 or so it did, but not now. I checked. It works transparently.

    Word 2003 needs a patch - not quite the same as a plugin - to read
    .docx; I don't know if it can read odt at all. I think there _may_ have
    been such a patch for the previous Word (2000?), and I don't think
    earlier Words could read anything but .doc, .txt, and RTF (and possibly
    .wri). I think .docx came in with 2007, though I don't know if that
    could read odt.

    Something being an open standard doesn't mean it's widely supported,
    though I'm pleased to hear odt is. I'm surprised to hear .docx is -
    surely M$ have kept some traps/features to themselves?
    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()ALIS-Ch++(p)Ar++T+H+Sh0!:`)DNAf

    did you hear about the guy who was frozen to absolute zero?
    He was 0K ...
    - Jason in alt.windows7.general (and three other 'groups), 2018-5-1

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From ...w¡ñ?±?ñ@3:633/10 to All on Sat Apr 18 07:44:43 2026
    On 4/18/2026 7:07 AM, J. P. Gilliver wrote:

    Word 2003 needs a patch - not quite the same as a plugin - to read
    .docx;
    I think .docx came in with 2007, though I don't know if that
    could read odt.


    Yes, docx arrive with version 2007
    Compatibility Pack released for earlier versions(2000-2003)

    --
    ...w­¤?ñ?¤

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From J. P. Gilliver@3:633/10 to All on Sat Apr 18 15:52:27 2026
    On 2026/4/17 23:42:21, Paul wrote:
    []
    You do not expect a "table" to fail, but typical bar-bet testing
    is to put a table within a table within a table. And that causes

    Yes, there does seem to be an obsession with tables. Quite a lot of
    years ago, when I was trying to investigate why an
    automatically-generated HTML page was so huge, I discovered that one of
    the reasons was that it contained tables nested three or four deep - and
    yet there was little or nothing in the displayed result that _needed_
    even one table. And I can't think of a reason in a Word document that
    I'd need more than one table-in-table nesting - actually, I can't think
    of where I'd need even that, though I concede there might be.

    a lot of DTP things some indigestion. So rather than it being
    a primitive that won't save or has a representation, it's the
    ability to use it multiple times in nested fashion that can come
    to grief.

    I'm sure things can be devised to break anything.

    It should be remembered that Office itself, could not always
    pass the "identity function". You could prepare a document in
    your favorite extension, save, then re-open the item and
    find graphical elements missing in there. It hardly seems
    reasonable, when you cannot eat your own-prepared lunch,
    that you would have the analytical skill to tell what output
    elements you weren't emitting. It might well be that in
    the identity test "save", that crap had silently gone missing
    and this is why opening the file again was not quite the same.

    I found the whole thing rather sad, which is why I stopped
    doing this after a while. It was "serving no purpose and
    making the inmates angry".

    Indeed. (I think I first heard that in the context of teaching pigs to
    sing: the results are disappointing, and it irritates the pigs.")

    From a tactical perspective, we don't expect the four
    heading styles and an inserted table or image, to foul up,
    but on the other hand, some of the simplest of test cases
    can still fail. Even if a DTP has a compatibility dialog
    indicating lost constructs, if it can't pass the identity
    function then it is unlikely to have bullet-proof
    compatibility indicators either.

    Definitely.
    []
    disconcerting. But with time, they passed these milestones,
    by finishing Cairo and then changing it to something else
    (you know, when you're bored with a new toy and you
    must try another new toy).

    :-)

    One issue I had with LO, was how they treated people in
    their forums, but I guess that is also water under the bridge.
    Anyone who has been there, knows what I'm talking about,
    the "gong show behavior" ("thread closed").

    Paul

    I've always preferred usenet to fora - if nothing else, their
    labyrinthine structure usually beats me (i. e. which sub-sub-sub-forum
    to look/post in with my query).
    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()ALIS-Ch++(p)Ar++T+H+Sh0!:`)DNAf

    did you hear about the guy who was frozen to absolute zero?
    He was 0K ...
    - Jason in alt.windows7.general (and three other 'groups), 2018-5-1

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Steve Hayes@3:633/10 to All on Sat Apr 18 20:56:20 2026
    On Fri, 17 Apr 2026 03:46:04 -0400, Paul <nospam@needed.invalid>
    wrote:

    On Thu, 4/16/2026 8:33 PM, Steve Hayes wrote:
    On Wed, 15 Apr 2026 16:17:02 +0100, "Kerr-Mudd, John"
    <admin@127.0.0.1> wrote:
    Oh for the days when a document meant text (maybe a bit of fonts
    & formatting) without embedding a full-blown script backdoor vulnerability. >>
    RTF does that, and most word processors can handle it.

    I use LibreOffice for .docx, Word97 for .doc.

    RTF was a great concept, but in all the times I tested
    that as part of building the Great Matrix of DTP tools,
    it always failed to work properly.

    Making it a binary format was just stupid.

    I've only ever come across it as text, and never seen it as a binary
    format.

    It's like this:

    {\rtf1\ansi\ansicpg1252\deff0\deflang7177{\fonttbl{\f0\fnil\fcharset0
    Times New Roman;}{\f1\fnil\fcharset0 Arial;}{\f2\fnil\fcharset0 Lucida Casual;}}
    {\colortbl ;\red255\green255\blue255;}
    \viewkind4\uc1\pard\f0\fs24 This is written in RTF format, and as far
    as I am aware it is \i all\i0 text.\par
    \par
    \highlight1\b\f1\fs32 It has options for headers. \par
    \par
    \b0\f0\fs24 And various \f2 different kinds of fonts which can be in
    \b bold\b0 , roman, or \i italic\i0\par
    \par
    \par


    }

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Carlos E.R.@3:633/10 to All on Sat Apr 18 21:48:02 2026
    On 2026-04-18 15:38, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-04-18 00:40, Chris wrote:
    Paul <nospam@needed.invalid> wrote:
    On Thu, 4/16/2026 4:24 PM, Chris wrote:

    ...

    A nice feature to have would be some config in the file telling LO to >>>>>> save both in odt and docx with a single click on the save button. Or >>>>>> some other windows format.

    I suggest that's unnecessary. Word will happily open and edit .odt
    natively. This is native behaviour since 2013.

    I'd start by asking the other person what they've got for tools,
    as you know some will answer "Macwrite" and others it will be
    "WordPerfect". And then you've got more of a challenge ahead of you.


    Both docx and odt are open standards and can be read by most uptodate
    software. Either is a good choice.


    Word doesn't need a plugin?

    Nope. Maybe in the very early days in 2013 or so it did, but not now. I checked. It works transparently.

    That could be. Maybe a patch is needed, as J. P. Gilliver says. What I
    know is that I tried and recipients said they could not open it. True or
    not is mostly irrelevant, I was not in a position to force them.

    --
    Cheers, Carlos.
    ES??, EU??;

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Carlos E.R.@3:633/10 to All on Sat Apr 18 21:52:10 2026
    On 2026-04-18 16:52, J. P. Gilliver wrote:
    On 2026/4/17 23:42:21, Paul wrote:

    ...

    One issue I had with LO, was how they treated people in
    their forums, but I guess that is also water under the bridge.
    Anyone who has been there, knows what I'm talking about,
    the "gong show behavior" ("thread closed").

    Paul

    I've always preferred usenet to fora - if nothing else, their
    labyrinthine structure usually beats me (i. e. which sub-sub-sub-forum
    to look/post in with my query).

    In a well managed forum it doesn't matter. The administrators will tell
    you are in the wrong subforum and just move the post to the correct subforum

    --
    Cheers, Carlos.
    ES??, EU??;

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From J. P. Gilliver@3:633/10 to All on Sat Apr 18 21:34:43 2026
    On 2026/4/18 20:52:10, Carlos E.R. wrote:
    On 2026-04-18 16:52, J. P. Gilliver wrote:
    On 2026/4/17 23:42:21, Paul wrote:

    ...

    One issue I had with LO, was how they treated people in
    their forums, but I guess that is also water under the bridge.
    Anyone who has been there, knows what I'm talking about,
    the "gong show behavior" ("thread closed").

    Paul

    I've always preferred usenet to fora - if nothing else, their
    labyrinthine structure usually beats me (i. e. which sub-sub-sub-forum
    to look/post in with my query).

    In a well managed forum it doesn't matter. The administrators will tell
    you are in the wrong subforum and just move the post to the correct subforum

    Agreed, though it needs a fair admin. staff to do that.

    I think the main thing I dislike about fora is that to follow several, I
    have to go to multiple websites, and learn each one's foibles. Yes, you
    could say the last part about newsgroups, but at least they're all in
    the same place (my news client), and the way it works forces a _certain_
    amount of uniformity across them.
    --
    J. P. Gilliver. UMRA: 1960/<1985 MB++G()ALIS-Ch++(p)Ar++T+H+Sh0!:`)DNAf

    ... "from a person I admire, respect, and deeply love."
    "Who was that then?" "Me." (Zaphod Beeblebrox in the Link episode.)

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Carlos E.R.@3:633/10 to All on Sat Apr 18 22:47:18 2026
    On 2026-04-18 22:34, J. P. Gilliver wrote:
    On 2026/4/18 20:52:10, Carlos E.R. wrote:
    On 2026-04-18 16:52, J. P. Gilliver wrote:
    On 2026/4/17 23:42:21, Paul wrote:

    ...

    One issue I had with LO, was how they treated people in
    their forums, but I guess that is also water under the bridge.
    Anyone who has been there, knows what I'm talking about,
    the "gong show behavior" ("thread closed").

    Paul

    I've always preferred usenet to fora - if nothing else, their
    labyrinthine structure usually beats me (i. e. which sub-sub-sub-forum
    to look/post in with my query).

    In a well managed forum it doesn't matter. The administrators will tell
    you are in the wrong subforum and just move the post to the correct subforum >>
    Agreed, though it needs a fair admin. staff to do that.

    I think the main thing I dislike about fora is that to follow several, I
    have to go to multiple websites, and learn each one's foibles. Yes, you
    could say the last part about newsgroups, but at least they're all in
    the same place (my news client), and the way it works forces a _certain_ amount of uniformity across them.

    Yes, absolutely.

    But there are cons: no graphics (in a windows support forum you can post screenshots). No control of spam or trolls.

    --
    Cheers, Carlos.
    ES??, EU??;

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Paul@3:633/10 to All on Sun Apr 19 00:11:16 2026
    On Sat, 4/18/2026 2:56 PM, Steve Hayes wrote:
    On Fri, 17 Apr 2026 03:46:04 -0400, Paul <nospam@needed.invalid>
    wrote:

    On Thu, 4/16/2026 8:33 PM, Steve Hayes wrote:
    On Wed, 15 Apr 2026 16:17:02 +0100, "Kerr-Mudd, John"
    <admin@127.0.0.1> wrote:
    Oh for the days when a document meant text (maybe a bit of fonts
    & formatting) without embedding a full-blown script backdoor vulnerability.

    RTF does that, and most word processors can handle it.

    I use LibreOffice for .docx, Word97 for .doc.

    RTF was a great concept, but in all the times I tested
    that as part of building the Great Matrix of DTP tools,
    it always failed to work properly.

    Making it a binary format was just stupid.

    I've only ever come across it as text, and never seen it as a binary
    format.

    It's like this:

    {\rtf1\ansi\ansicpg1252\deff0\deflang7177{\fonttbl{\f0\fnil\fcharset0
    Times New Roman;}{\f1\fnil\fcharset0 Arial;}{\f2\fnil\fcharset0 Lucida Casual;}}
    {\colortbl ;\red255\green255\blue255;}
    \viewkind4\uc1\pard\f0\fs24 This is written in RTF format, and as far
    as I am aware it is \i all\i0 text.\par
    \par
    \highlight1\b\f1\fs32 It has options for headers. \par
    \par
    \b0\f0\fs24 And various \f2 different kinds of fonts which can be in
    \b bold\b0 , roman, or \i italic\i0\par
    \par
    \par


    }


    Here's one data point.

    https://en.wikipedia.org/wiki/Rich_Text_Format

    "1.1 Microsoft Word 4 1989 Allowed for font embedding, which lets font
    data to be located inside the file."

    "Pictures

    RTF supports inclusion of JPEG, PNG, Enhanced Metafile (EMF), Windows Metafile (WMF)...
    picture types in hexadecimal (the default) or binary format in a RTF file.
    "

    Fonts in particular, they can choose to pass those in binary.
    That's something you see in other formats. There is a tendency
    to not pass a complete embedded font, in a text way (as a Chinese
    font can be 10MB at the best of times).

    If anything is compressed in there ("we cannot have too large files"),
    they're not going to carry that in a readable way (because that
    destroys the efficiency of compression).

    If you had text and no non-standard fonts, maybe it does look
    like text to you. At the time, I couldn't really read any of
    that, nor did I intend to write any tools to work with it. In
    my time at work, I do not recollect anyone making a project
    out of "let's convert this extracted text into RTF". RTF interchange
    was not a grass-roots thing, that I could see.

    The purpose of having an interchange format that was English text,
    was to encourage the creation of automated tools. And some people
    were interested enough in that, to do it. I can't remember now,
    how font declarations were done there, but the purpose was to
    get the document content, into the tool. At least one individual,
    made a business out of doing this.

    Paul

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Paul@3:633/10 to All on Sun Apr 19 00:22:21 2026
    On Sat, 4/18/2026 3:52 PM, Carlos E.R. wrote:
    On 2026-04-18 16:52, J. P. Gilliver wrote:
    On 2026/4/17 23:42:21, Paul wrote:

    ...

    One issue I had with LO, was how they treated people in
    their forums, but I guess that is also water under the bridge.
    Anyone who has been there, knows what I'm talking about,
    the "gong show behavior" ("thread closed").

    ÿÿÿ Paul

    I've always preferred usenet to fora - if nothing else, their
    labyrinthine structure usually beats me (i. e. which sub-sub-sub-forum
    to look/post in with my query).

    In a well managed forum it doesn't matter. The administrators will tell you are in the wrong subforum and just move the post to the correct subforum


    A "neat freak" on the staff went into the forum and
    closed threads. If you cannot withstand interaction
    with customers, if you're that thin-skinned, the solution
    is simple. Don't offer a forum. Don't play games with
    us by closing a thread, mid-stream. These are not people
    swearing at you. They're using normal voice and the
    content is topical.

    Notice that for unresolved feature requests, Mozilla
    will keep a Bugzilla entry open for 24 years. And that's useful,
    because when someone asks "can Thunderbird do this?", you
    can point them to the 24 year old thread. Perfect. Serves
    a purpose. Doesn't take all that much storage space. There
    are some signs they may actually fix the 24 year old issue.
    Not detected in the thread itself, unfortunately, but someone
    presented a datapoint which indicates they're finally working
    on something there that previously had, um, stumped them.
    When they finish the work, we'll find out whether it sinks
    under its own weight, back into the swamp :-)

    Paul

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Chris@3:633/10 to All on Sun Apr 19 08:33:32 2026
    J. P. Gilliver <G6JPG@255soft.uk> wrote:
    On 2026/4/18 14:38:8, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-04-18 00:40, Chris wrote:
    []
    Both docx and odt are open standards and can be read by most uptodate
    software. Either is a good choice.


    Word doesn't need a plugin?

    Nope. Maybe in the very early days in 2013 or so it did, but not now. I
    checked. It works transparently.

    Word 2003 needs a patch - not quite the same as a plugin - to read
    .docx; I don't know if it can read odt at all. I think there _may_ have
    been such a patch for the previous Word (2000?), and I don't think
    earlier Words could read anything but .doc, .txt, and RTF (and possibly .wri). I think .docx came in with 2007, though I don't know if that
    could read odt.

    Something being an open standard doesn't mean it's widely supported,
    though I'm pleased to hear odt is. I'm surprised to hear .docx is -
    surely M$ have kept some traps/features to themselves?

    Wouldn't be much of an open standard if they did. MS were forced into a
    corner by various european countries writing into law that governmental documents must be saved in an open standard. At the time odt was the only option available. MS fast-tracked the creation of docx to avoid falling
    foul of the law.


    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Carlos E.R.@3:633/10 to All on Sun Apr 19 14:18:05 2026
    On 2026-04-19 06:22, Paul wrote:
    On Sat, 4/18/2026 3:52 PM, Carlos E.R. wrote:
    On 2026-04-18 16:52, J. P. Gilliver wrote:
    On 2026/4/17 23:42:21, Paul wrote:

    ...

    One issue I had with LO, was how they treated people in
    their forums, but I guess that is also water under the bridge.
    Anyone who has been there, knows what I'm talking about,
    the "gong show behavior" ("thread closed").

    ÿÿÿ Paul

    I've always preferred usenet to fora - if nothing else, their
    labyrinthine structure usually beats me (i. e. which sub-sub-sub-forum
    to look/post in with my query).

    In a well managed forum it doesn't matter. The administrators will tell you are in the wrong subforum and just move the post to the correct subforum


    A "neat freak" on the staff went into the forum and
    closed threads. If you cannot withstand interaction
    with customers, if you're that thin-skinned, the solution
    is simple. Don't offer a forum. Don't play games with
    us by closing a thread, mid-stream. These are not people
    swearing at you. They're using normal voice and the
    content is topical.

    Indeed.

    Above, I am not familiar with the LO forums. Only once I needed help
    with a database issue, and I asked in a forum. I was helped, mostly by a single individual that had the knowledge. I was happy.

    <https://ask.libreoffice.org/t/lo-base-i-created-a-form-to-handle-a-table-but-can-not-create-new-record/83532>



    Notice that for unresolved feature requests, Mozilla
    will keep a Bugzilla entry open for 24 years. And that's useful,
    because when someone asks "can Thunderbird do this?", you
    can point them to the 24 year old thread. Perfect. Serves
    a purpose. Doesn't take all that much storage space. There
    are some signs they may actually fix the 24 year old issue.
    Not detected in the thread itself, unfortunately, but someone
    presented a datapoint which indicates they're finally working
    on something there that previously had, um, stumped them.
    When they finish the work, we'll find out whether it sinks
    under its own weight, back into the swamp :-)

    Paul

    Right.

    --
    Cheers, Carlos.
    ES??, EU??;

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Carlos E.R.@3:633/10 to All on Sun Apr 19 14:19:27 2026
    On 2026-04-19 10:33, Chris wrote:
    J. P. Gilliver <G6JPG@255soft.uk> wrote:
    On 2026/4/18 14:38:8, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-04-18 00:40, Chris wrote:
    []
    Both docx and odt are open standards and can be read by most uptodate >>>>> software. Either is a good choice.


    Word doesn't need a plugin?

    Nope. Maybe in the very early days in 2013 or so it did, but not now. I
    checked. It works transparently.

    Word 2003 needs a patch - not quite the same as a plugin - to read
    .docx; I don't know if it can read odt at all. I think there _may_ have
    been such a patch for the previous Word (2000?), and I don't think
    earlier Words could read anything but .doc, .txt, and RTF (and possibly
    .wri). I think .docx came in with 2007, though I don't know if that
    could read odt.

    Something being an open standard doesn't mean it's widely supported,
    though I'm pleased to hear odt is. I'm surprised to hear .docx is -
    surely M$ have kept some traps/features to themselves?

    Wouldn't be much of an open standard if they did. MS were forced into a corner by various european countries writing into law that governmental documents must be saved in an open standard. At the time odt was the only option available. MS fast-tracked the creation of docx to avoid falling
    foul of the law.


    But is docx the default now?

    --
    Cheers, Carlos.
    ES??, EU??;

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Chris@3:633/10 to All on Sun Apr 19 22:14:49 2026
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-04-19 10:33, Chris wrote:
    J. P. Gilliver <G6JPG@255soft.uk> wrote:
    On 2026/4/18 14:38:8, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-04-18 00:40, Chris wrote:
    []
    Both docx and odt are open standards and can be read by most uptodate >>>>>> software. Either is a good choice.


    Word doesn't need a plugin?

    Nope. Maybe in the very early days in 2013 or so it did, but not now. I >>>> checked. It works transparently.

    Word 2003 needs a patch - not quite the same as a plugin - to read
    .docx; I don't know if it can read odt at all. I think there _may_ have
    been such a patch for the previous Word (2000?), and I don't think
    earlier Words could read anything but .doc, .txt, and RTF (and possibly
    .wri). I think .docx came in with 2007, though I don't know if that
    could read odt.

    Something being an open standard doesn't mean it's widely supported,
    though I'm pleased to hear odt is. I'm surprised to hear .docx is -
    surely M$ have kept some traps/features to themselves?

    Wouldn't be much of an open standard if they did. MS were forced into a
    corner by various european countries writing into law that governmental
    documents must be saved in an open standard. At the time odt was the only
    option available. MS fast-tracked the creation of docx to avoid falling
    foul of the law.


    But is docx the default now?

    Yeah, I'd say so. I do very occasionally get odt docs from some EU administrative orgs.


    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)
  • From Carlos E.R.@3:633/10 to All on Mon Apr 20 02:27:45 2026
    On 2026-04-20 00:14, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-04-19 10:33, Chris wrote:
    J. P. Gilliver <G6JPG@255soft.uk> wrote:
    On 2026/4/18 14:38:8, Chris wrote:
    Carlos E.R. <robin_listas@es.invalid> wrote:
    On 2026-04-18 00:40, Chris wrote:
    []
    Both docx and odt are open standards and can be read by most uptodate >>>>>>> software. Either is a good choice.


    Word doesn't need a plugin?

    Nope. Maybe in the very early days in 2013 or so it did, but not now. I >>>>> checked. It works transparently.

    Word 2003 needs a patch - not quite the same as a plugin - to read
    .docx; I don't know if it can read odt at all. I think there _may_ have >>>> been such a patch for the previous Word (2000?), and I don't think
    earlier Words could read anything but .doc, .txt, and RTF (and possibly >>>> .wri). I think .docx came in with 2007, though I don't know if that
    could read odt.

    Something being an open standard doesn't mean it's widely supported,
    though I'm pleased to hear odt is. I'm surprised to hear .docx is -
    surely M$ have kept some traps/features to themselves?

    Wouldn't be much of an open standard if they did. MS were forced into a
    corner by various european countries writing into law that governmental
    documents must be saved in an open standard. At the time odt was the only >>> option available. MS fast-tracked the creation of docx to avoid falling
    foul of the law.


    But is docx the default now?

    Yeah, I'd say so. I do very occasionally get odt docs from some EU administrative orgs.


    No, I mean. When you are in Word, and click "save", does it save as docx without asking?


    --
    Cheers, Carlos.
    ES??, EU??;

    --- PyGate Linux v1.5.14
    * Origin: Dragon's Lair, PyGate NNTP<>Fido Gate (3:633/10)