Re: Android APK sanity check

2018-06-01 Thread J. Landman Gay via use-livecode
On 6/1/18 6:24 AM, Lagi Pittas via use-livecode wrote: I have had the same problem Using old and very new android devices, where the program will give a blank/black screen on different versions of Android with no ryme or reason. Sometimes it works on and older version of android with older hardw

Re: Access image EXIF info on mobile

2018-06-01 Thread Alan via use-livecode
Hi Andrew Thanks a lot for testing on your device with very interesting results! I saw your detailed addition to the bug report - that's great and I hope that it helps Monte discover and rectify the issue. On Android it appears that just using mobilePickPhoto "library" seems to work ok and r

Re: SQL Help

2018-06-01 Thread prothero--- via use-livecode
I’m thinking something like: Select max(“iStoreGrp”) from “valveFlowsA” where (“valveNum”=n1 AND “meterNum”=n2) Then I have to sort out how to put the statement in a string that can be sent to php. Does this seem reasonable? I’ll find out tomorrow. Best, Bill William Prothero http://earthlea

Re: SQL Help

2018-06-01 Thread prothero--- via use-livecode
Tnx for the input, folks. Yes, I want all of the columns. I could specify them each, because there are not many of them, but .. I’m done for the evening, and will try your suggestions first thing in the morning. Best, Bill William Prothero http://earthlearningsolutions.org > On Jun 1, 20

Re: SQL Help

2018-06-01 Thread Bob Sneidar via use-livecode
Even better! Bob S > On Jun 1, 2018, at 17:48 , Mike Bonner via use-livecode > wrote: > > if I understand correctly, and just off the top of my head, using "limit" > is one way to do this... > The sql pseudo code would be something like: select * from yourtable order > by iStoreGrp descendi

Re: SQL Help

2018-06-01 Thread Bob Sneidar via use-livecode
He wants all the columns I think. I suspect he will need a join on the same table. I'm too intoxicated to think about this, but I've done it before. Doesn't group by require that the columns be included in the select clause? Bob S > On Jun 1, 2018, at 17:43 , Paul Dupuis via use-livecode >

Re: SQL Help

2018-06-01 Thread Mike Bonner via use-livecode
if I understand correctly, and just off the top of my head, using "limit" is one way to do this... The sql pseudo code would be something like: select * from yourtable order by iStoreGrp descending where meterNum = 1 AND valveNum = 3 limit 1 This would grab all the rows, sort them by istoregrp and

Re: SQL Help

2018-06-01 Thread Paul Dupuis via use-livecode
Not tested, but: SELECT max(iStoreGrp) FROM valveFlowsA WHERE meterNum =1 AND valveNum =3 GROUP BY meternum, valvenum, iStoreGrp If my memory as I am falling asleep for the night serves me right. On 6/1/2018 8:31 PM, William Prothero via use-livecode wrote: > Folks: > Maybe someone can answer

SQL Help

2018-06-01 Thread William Prothero via use-livecode
Folks: Maybe someone can answer this easily and save me some hair pulling. I know it’s google-able, but I’ve tried and know it’s going to be a trudge to get the right format. I want to make a query to a mySQL db that: The table is named: “valveFlowsA” I want the query to return the row with the

Screen and window management...

2018-06-01 Thread Paul Dupuis via use-livecode
In doing some scripting to hadle window and screen management for our apps when multiple monitors are involved, I am puzzled by: Why does the screenLoc not have the effective and/or working keywords for it? A common item is to set the loc of window to the screenLoc to center the window on th

Re: Devawriter Pro: Fund Raiser Goes Live!

2018-06-01 Thread Lagi Pittas via use-livecode
Hi Bob That should be Intellectual Pygmies - although sometimes mental is closer to the truth these days. Regards Lagi On 1 June 2018 at 15:54, Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > What surprises me is that I get it. :-) > > Bob S > > > > On May 31, 2018, at

Re: Devawriter Pro: Fund Raiser Goes Live!

2018-06-01 Thread Lagi Pittas via use-livecode
What surprises me is you don't let us mental pygmies in on the in joke. (sorry if that is a hate crime against you Pygmies with internet access) Regards lagi On 1 June 2018 at 15:54, Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > What surprises me is that I get it. :-)

Re: Access image EXIF info on mobile

2018-06-01 Thread Andrew Bell via use-livecode
Didn't bother to test on Android since mergAV isn't supported, but I can confirm the crashes on simulated devices. When tested on physical devices, the stack never crashed but didn't always work depending on the source of the image. Even images from the same device didn't always work, which

Re: Devawriter Pro: Fund Raiser Goes Live!

2018-06-01 Thread Bob Sneidar via use-livecode
What surprises me is that I get it. :-) Bob S > On May 31, 2018, at 21:20 , Mark Wieder via use-livecode > wrote: > > On 05/31/2018 08:18 PM, Colin Holgate via use-livecode wrote: >> Read the other two articles, then divide by 2. > > > > -- > Mark Wieder > ahsoftw...@gmail.com _

Re: UTF8 on LC server

2018-06-01 Thread Tim Selander via use-livecode
Mark, Success! Greatly appreciate your walking me through this. Have a great weekend. Tim Selander Tokyo, Japan On Fri, Jun 1, 2018 at 7:15 AM, Mark Waddingham via use-livecode < use-livecode@lists.runrev.com> wrote: On 2018-06-01 12:53, Tim Selander via use-livecode wrote: Hi Mark, He

Re: UTF8 on LC server

2018-06-01 Thread Tom Glod via use-livecode
also just fyi ...if u are encoding arrays and u need the character handling, you need the extra parameter arrayencode(myarray,"7.0") On Fri, Jun 1, 2018 at 7:15 AM, Mark Waddingham via use-livecode < use-livecode@lists.runrev.com> wrote: > On 2018-06-01 12:53, Tim Selander via use-livecode

Re: Android APK sanity check

2018-06-01 Thread Lagi Pittas via use-livecode
Hi I have had the same problem Using old and very new android devices, where the program will give a blank/black screen on different versions of Android with no ryme or reason. Sometimes it works on and older version of android with older hardware and fails on a phone or tablet with say the oreo

Re: UTF8 on LC server

2018-06-01 Thread Mark Waddingham via use-livecode
On 2018-06-01 12:53, Tim Selander via use-livecode wrote: Hi Mark, Here is the script. The files I'm using are bamboobabies.com/getjapanesetext.lc, and the text it is getting is bamboobabies.com/news.txt. In the script, there are two lines reading the text file that I've taken turns commenting

Re: UTF8 on LC server

2018-06-01 Thread Tim Selander via use-livecode
Hi Mark, Here is the script. The files I'm using are bamboobabies.com/getjapanesetext.lc, and the text it is getting is bamboobabies.com/news.txt. In the script, there are two lines reading the text file that I've taken turns commenting out If you can give me any hints, it would be gre

Re: Help converting Hex UTF-8 bytes to character

2018-06-01 Thread Trevor DeVore via use-livecode
On Fri, Jun 1, 2018 at 2:06 AM, Mark Waddingham via use-livecode < use-livecode@lists.runrev.com> wrote: > On 2018-06-01 06:21, Monte Goulding via use-livecode wrote: > >> On 1 Jun 2018, at 2:18 pm, Trevor DeVore via use-livecode < >>> use-livecode@lists.runrev.com> wrote: >>> >>> Yes it does! `fo

RE: Android APK sanity check

2018-06-01 Thread Clarence Martin via use-livecode
I have to agree. The APK file that you provided did run on my Nexus7 but had some bad effects on both o my Devices. My Android Program that I have that's under development started having loading problems on my Nexus7 and had to be removed through the apps settings under the Android Settings menu.

Re: Devawriter Pro: Fund Raiser Goes Live!

2018-06-01 Thread Iphonelagi via use-livecode
I assume you’re taking the piss (jokingly I hope) But it’s certainly fining it’s way into the market https://www.google.co.uk/amp/s/www.computerworld.com/article/2867542/microsoft-touts-7-per-user-monthly-pricing-for-windows-subscriptions.amp.html https://www.cnbc.com/2018/02/16/moviepass-slashe

Re: UTF8 on LC server

2018-06-01 Thread Mark Waddingham via use-livecode
On 2018-06-01 02:14, Tim Selander via use-livecode wrote: Hi Kee and Alex, The original documents I'm working with are UTF8, so that's that I've been using. So converting them to UTF16 is recommended? I'll try that. Alex, desktop is version 8 something, and the server is the one installed on th

Re: Help converting Hex UTF-8 bytes to character

2018-06-01 Thread Mark Waddingham via use-livecode
On 2018-06-01 06:21, Monte Goulding via use-livecode wrote: On 1 Jun 2018, at 2:18 pm, Trevor DeVore via use-livecode wrote: Yes it does! `format` is my new best friend. Hmm… why not just throw the whole thing at format? If it has one escape sequence it might have others and you can’t put on