Re: Am I using the best mail client?

2023-05-12 Thread J. Landman Gay via use-livecode
Because of how mobile email clients work, I top post when responding on my phone or tablet, and bottom post when I'm at the computer. But I do try to trim the original message regardless. I guess you can tell where I am right now. -- Jacqueline Landman Gay | jac...@hyperactivesw.com

Re: Am I using the best mail client?

2023-05-12 Thread doc hawk via use-livecode
bob belabored, >There was some talk years ago about the practice of only quoting the relevant >body text, and not >every single reply with quote, and reply with quote of reply with quote, and >every reply with >quote of every reply with quote of every reply… That predates this list, and for

Re: [semi OT] mySQL question

2023-05-12 Thread Bob Sneidar via use-livecode
Just as an aside, I do not bother with joins, if I can help it. If I need data from multiple tables I query each table for just the data I need, and save it in discreet arrays, 1 per table. Of course, my needs are pretty simple. I typically have one parent table (the example suggested calls

Re: Am I using the best mail client?

2023-05-12 Thread Bob Sneidar via use-livecode
I thread my mail in Apple Mail, and I also have a rule which moves incoming mail from the list into its own folder. The trouble with that is that some mail clients quote at the top of the body, and others quote below. That makes reading a long string of emails and quoted replies nearly

Re: A spinner that keeps spinning

2023-05-12 Thread Andreas Bergendal via use-livecode
Peter, Well no, the web deployment is just for show, really. It’s the LC stack that is the actual tool, that you should download from GitHub to use. From the stack you can copy the widget or the code as you prefer. I don’t think it’s currently possible to get the content of a field in web

mySQL question party

2023-05-12 Thread R.H. via use-livecode
Look up Google for the party entity relationships diagram or schema. A "party" is either a "person" or a "organisation" (company, org) The party is an entity ( table) that has an id. The org or person tables have a foreign key to the party id. It is a mutual exclusive relationship. A party must

Re: A spinner that keeps spinning

2023-05-12 Thread Peter Bogdanoff via use-livecode
Andreas, thanks again! Am I supposed to be able to copy the CSS or the widget to the clipboard and paste directly into desktop LC? I tried using Safari and Chrome, but nothing ended up in the clipboard. Peter Bogdanoff > On May 12, 2023, at 11:31 AM, Andreas Bergendal via use-livecode >

Re: A spinner that keeps spinning

2023-05-12 Thread Andreas Bergendal via use-livecode
Just a note that an improved version of WIS_BrowserAnimation has been released: Version 1.0.4 - More efficient CSS code handling - only CSS code needed for the chosen animations is now included - Added the possibility to animate text, with various fonts and styles - The html/css code is now

Re: [semi OT] mySQL question

2023-05-12 Thread jbv via use-livecode
Hello Ken, Thank you so much for your answer. Your solution confirms what I had more or less in mind. I will give it a try asap. Best, jbv Le 2023-05-11 15:33, Ken Ray a écrit : I would recommend a table for People, a table for Companies, and a table for Employment that acts as a linking