Re: OT: Microsoft wants to buy Github!

2018-06-02 Thread Rick Harrison via use-livecode
Hi Richard, I like the look of GitLab! It’s very nice and I think it could be a great replacement. Thank you for that suggestion! Rick > On Jun 2, 2018, at 8:09 PM, Richard Gaskin via use-livecode > wrote: > > Some of my friends in the open source world are suggesting GitLab: > https://abou

Re: OT: Microsoft wants to buy Github!

2018-06-02 Thread Richard Gaskin via use-livecode
Rick Harrison wrote: > I thought you might all want to keep your eyes on this one. > > https://fossbytes.com/microsoft-github-aquisition-report/ > > Is it time we start pulling software from Github to let them > know we are not in favor of this acquisition? > > How will this effect LiveCode? > >

Re: OT: Microsoft wants to buy Github!

2018-06-02 Thread J. Landman Gay via use-livecode
Well, they bought Skype a while ago and so far nothing too horrible has happened. They did redesign the interface to make it worse, but my old version still works. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On June 2, 2018 5:32:08 PM

OT: Microsoft wants to buy Github!

2018-06-02 Thread Rick Harrison via use-livecode
Hi there, I thought you might all want to keep your eyes on this one. https://fossbytes.com/microsoft-github-aquisition-report/ Is it time we start pulling software from Github to let them know we are not in favor of this acquisition?

Re: How To Become Android Developer

2018-06-02 Thread Sannyasin Brahmanathaswami via use-livecode
FOR WHAT ITS WORTH: It turns out I was working too hard. The folder "android-sdk-macosx" which is assembled online by the "tools." I could not get it work. But I had jdk1.8.0_172.jdk. installed So: 1) turns out that folder "android-sdk-macosx" in completely independent of the system. BUT

RE: scrollerdidscroll, but WHAT has bee scrolled?

2018-06-02 Thread Ralph DiMola via use-livecode
Klaus, I name the scroller the same as the control it's scrolling. The "scrollderdidscroll" is only sent to the stack that created it. If you have a generic "create scroller" handler in a library stack then the "scrollderdidscroll" message will only go to that stack. In the context of "scrollderdi

Re: SQL Help

2018-06-02 Thread William Prothero via use-livecode
Paul: Thanks, the suggestion you made worked. I used: put "SELECT * FROM "&theTable&" WHERE "&col1Name&" = "&col1Value&" AND "&col2Name&" = "&" order by iStoreGrp desc limit 1" into theQuery This returns the row with the specified meterNum and valveNum and the maximum value of iStoreGrp. Thanks

Re: scrollerdidscroll, but WHAT has bee scrolled?

2018-06-02 Thread Klaus major-k via use-livecode
Hi Mark, > Am 02.06.2018 um 15:29 schrieb Mark Waddingham via use-livecode > : > > From memory I think there is mobileControlTarget() function which is the > equivalent of 'the target'. ah, yes, that's what I was looking for, thanks a bunch! :-) > Warmest Regards, > > Mark. > > Sent from my

Re: scrollerdidscroll, but WHAT has bee scrolled?

2018-06-02 Thread Mark Waddingham via use-livecode
>From memory I think there is mobileControlTarget() function which is the >equivalent of 'the target'. Warmest Regards, Mark. Sent from my iPhone > On 2 Jun 2018, at 13:04, Klaus major-k via use-livecode > wrote: > > Hi friends, > > this interesting question came up in the german LC forum.

scrollerdidscroll, but WHAT has bee scrolled?

2018-06-02 Thread Klaus major-k via use-livecode
Hi friends, this interesting question came up in the german LC forum. If you have 2 native scrollers on a card, how do you differ in the "scrollderdidscroll" handler WHICH one has been actually scrolled? Know what i mean? I would have exspected an appropriate parameter pContolID like in "mobil

Re: SQL Help

2018-06-02 Thread Paul Dupuis via use-livecode
Sorry, I missed the all columns bit. Yes, LIMIT is the way to do this SELECT * FROM valveFlowsA WHERE meterNum =1 AND valveNum =3 ORDER BY iStoreGrp DESC LIMIT 1 If you still need it. The DESC insure the record with the highest (max) iStoreGrp value is returned first. CAUTION: If the data contain