Mike, if you have the bundle and the appstarterstack, you can view the
examples there.
On Mon, Sep 26, 2022 at 4:36 PM Mike Kerner via use-livecode <
use-livecode@lists.runrev.com> wrote:
> Is there any advantage to using the android widget vs. creating them
> with the commands? I'd like to make
I'm trying to convert a date format like mm/dd/ to an sql date format
mmdd. Any ideas? Nothing I found on the interwebs seems to work.
Bob S
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsub
Why not :
set itemdel to "/"
get tDate
put item 3 of it & item 1 of it & item 2 of it into tSql
JC
Le ven. 30 sept. 2022 à 19:13, Bob Sneidar via use-livecode <
use-livecode@lists.runrev.com> a écrit :
> I'm trying to convert a date format like mm/dd/ to an sql date format
> mmdd. Any id
If it's always this standard string 'tDate' why not avoid Regex and just set
the delimiters of tDate to "/" and then put item 3 of tDate & item 2 of tDate
and put item 1 of tDate?
Best,
Keith
> On 30 Sep 2022, at 18:13, Bob Sneidar via use-livecode
> wrote:
>
> I'm trying to convert a date
Regex is overkill for this . i would handcode the translation like
Keith mentioned.
On Fri, Sep 30, 2022 at 1:42 PM Keith Clarke via use-livecode <
use-livecode@lists.runrev.com> wrote:
> If it's always this standard string 'tDate' why not avoid Regex and just
> set the delimiters of tDate to
Back in the day, I would create quick and simple demos of something I was
building as a concept, create standalones, and send them to the people I
wanted to demonstrate to. As an example of an example, suppose I wanted to
build a simple Eliza-like chatbot. I could throw a field on a card, put a
"st
Well it's like this. I am working in a document management system, and when I
capture a date, I want to convert it to an sql date. I am not working in
Livecode for this.
Bob S
> On Sep 30, 2022, at 10:38 , Jacques Clavel via use-livecode
> wrote:
>
> Why not :
> set itemdel to "/"
> get tD
Short answers:
1. Yes
2. Yes, but probably not.
3. Yes.
Long answers.
1. Yes, absolutely, it's ideal for quick, easy-to-distribute apps or
demo samples.
2. Yes, you'll need somewhere to store/give access to the files. But it
probably won't be Google Drive - you want the files of the app t
On 9/30/22 17:11, Alex Tweedly via use-livecode wrote:
and the poor indexing/naming makes it tedious to try to find.
...and speaking of poor indexing etc...
I was looking for a way to point the svgicon widget to an external svg
file and finding that for some reason this isn't built into the w