Re: [SQL] placeholders work for SQLite but not for mySQL

2016-08-06 Thread Ludovic THEBAULT
> Le 6 août 2016 à 11:07, Kay C Lan a écrit : > > Thanks Erik, > > yes that's what I'm doing as a workaround at the moment, I test the > variable and see if it's empty, if not I use place holders and execute > the original statement, if it is empty, then I've written

"could not find a valid identity to use for the selected profile" again

2016-08-06 Thread Mike Kerner
One machine is working fine, the other isn't. I tried Scott's idea of replacing the Apple WWDC cert. I've tried using XC do re-download the profiles, etc. I tried going into the keychain and removing various certs, etc. and re-downloading and installing, but I'm not getting this resolved. SO

Re: [ ANN ] Release 8.1.0 DP-3

2016-08-06 Thread J. Landman Gay
On 8/6/2016 12:18 PM, Trevor DeVore wrote: Modules need to be recompiled for 8.1. During my brief forray, I discovered that the same simple LCB script threw the "format not supported" error if my formatting included tabs. Replacing tabs with spaces made it work again. I looked at your

Re: looking for an alternative to KAGI, because KAGI ceased operations

2016-08-06 Thread Mark Schonewille
You're wrong, Matthias. Also, I never said that companies don't need to do (VAT) tax declarations. It is so easy to misunderstand these things! Kind regards, Mark Schonewille http://economy-x-talk.com https://www.facebook.com/marksch Buy the most extensive book on the LiveCode language:

Re: [ ANN ] Release 8.1.0 DP-3

2016-08-06 Thread Trevor DeVore
On Saturday, August 6, 2016, pink wrote: > I started to use 8.1.0 DP-3 for the first time, and I noticed that all of > the > widgets that are not made by Livecode are flagged. (For example, I have all > of Trevor's installed) > > When using one, I get "Widget could not be

file upload options

2016-08-06 Thread Matt Maier
I'm trying to figure out if I should code a solution into my desktop app or just tell people to use a 3rd-party app like WinSCP. What I think I need people to be able to do is "sync" a project folder on their computer with a repository I'm hosting for them on my site. The folder will have

library wrapping using LCB in 8.1

2016-08-06 Thread Stephen MacLean
Hi All, Can someone comment on where foreign and OS level wrapping using LCB is in regards to the current 8.1 DP release? Looking forward to getting started when it’s available! Thanks, Steve MacLean ___ use-livecode mailing list

Secure sockets problem... any update?

2016-08-06 Thread Stephen MacLean
Hi All, With all that went on in the LC conference, I was wondering if there was any update to the secure sockets problem I reported here: http://quality.livecode.com/show_bug.cgi?id=16871 and http://forums.livecode.com/viewtopic.php?f=11=26225

Re: [ ANN ] Release 8.1.0 DP-3

2016-08-06 Thread pink
I started to use 8.1.0 DP-3 for the first time, and I noticed that all of the widgets that are not made by Livecode are flagged. (For example, I have all of Trevor's installed) When using one, I get "Widget could not be created because there was an error while loading it. To resolve, please go to

Re: Backspace unrecoverably deletes an object ....

2016-08-06 Thread Francis Nugent Dixon
Hi from Beautiful Brittany, to Bob Sneidar "Like it" - Will Use ! Thanks -Francis ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Slack team for educators and students

2016-08-06 Thread Tore Nilsen
As discussed at the conference on Friday 5 August, we need to build a community geared towards educators and students using LiveCode. The purpose of such a community is to share ideas, techniques, solutions and problems, and to give each student and teacher a wider community than what can be

Re: [SQL] placeholders work for SQLite but not for mySQL

2016-08-06 Thread Kay C Lan
Thanks Erik, yes that's what I'm doing as a workaround at the moment, I test the variable and see if it's empty, if not I use place holders and execute the original statement, if it is empty, then I've written out the longhand statement without place holders and execute that. It's just a pain, I

Re: SVG Editors, anyone?

2016-08-06 Thread Graham Samuel
Hi Beda aybe I spoke too soon - AffinityDesigner looks great (and affordable), although I am not sure I could train myself adequately to use it. Still, I will try both Inkscape and AffinityDesigner. My first goal is to make a widget which displays a fairly photo-realisitic graphic that can be

Re: [SQL] placeholders work for SQLite but not for mySQL

2016-08-06 Thread Erik Beugelaar
AFAIK it is possible to add your parameter in the WHERE clause. So maybe you can test on NULL or NOT EMPTY as the first condition before the other ones. Cheers, Erik Kay C Lan wrote: What is the trick to passing an empty variable to a mySQL database using