Re: answer with...

2017-08-16 Thread Dr. Hawkins via use-livecode
On Wed, Aug 16, 2017 at 12:07 PM, jbv via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi > I have a blank... > I need to use a prompt in the form of > answer "Your choice" with "John" or "Mary" or "Cancel" > > the problem is that the number of options depends on the > result of a DB r

Re: answer with...

2017-08-16 Thread jbv via use-livecode
works like a charm... Thanks a lot. On Wed, August 16, 2017 10:13 pm, J. Landman Gay via use-livecode wrote: > On 8/16/17 10:07 pm, jbv via use-livecode wrote: > > >> I have a blank... >> I need to use a prompt in the form of >> answer "Your choice" with "John" or "Mary" or "Cancel" >> >> the pr

Re: answer with...

2017-08-16 Thread J. Landman Gay via use-livecode
On 8/16/17 10:07 pm, jbv via use-livecode wrote: > I have a blank... > I need to use a prompt in the form of >answer "Your choice" with "John" or "Mary" or "Cancel" > > the problem is that the number of options depends on the > result of a DB request, and can vary from 2 to 6... I think the

RE: answer with...

2017-08-16 Thread Ralph DiMola via use-livecode
Android Mobile is limited to 3. Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: answer with...

2017-08-16 Thread Richard Gaskin via use-livecode
Richmond Mathewson wrote: > This works: > > on mouseUp > answer "your Choice" with fld "CHOIX" > end mouseUp Apparently that works with any return-delimited container, including variables. I couldn't find mention of this in the Dictionary entry for "answer". Any know offhand if there's a b

RE: answer with...

2017-08-16 Thread ** Clarence P Martin ** via use-livecode
Richmond Mathewson via use-livecode Sent: Wednesday, August 16, 2017 12:56 PM To: How to use LiveCode Cc: Richmond Mathewson Subject: Re: answer with... Ha, Ha! I didn't know that either until I had a "mad" idea and tried it. Richmond. On 8/16/17 10:54 pm, Klaus major-k via use

Re: answer with...

2017-08-16 Thread Richmond Mathewson via use-livecode
Ha, Ha! I didn't know that either until I had a "mad" idea and tried it. Richmond. On 8/16/17 10:54 pm, Klaus major-k via use-livecode wrote: Hi Richmond, Am 16.08.2017 um 21:32 schrieb Richmond Mathewson via use-livecode : This works: on mouseUp answer"your Choice" with fld "CHOIX" end

Re: answer with...

2017-08-16 Thread Klaus major-k via use-livecode
Hi Richmond, > Am 16.08.2017 um 21:32 schrieb Richmond Mathewson via use-livecode > : > > This works: > > on mouseUp > answer"your Choice" with fld "CHOIX" > end mouseUp > > if fld "CHOIX" is a listField WOW, now THIS is really cool! And also works with "normal" (editable) fields. Really

Re: answer with...

2017-08-16 Thread Richmond Mathewson via use-livecode
http://forums.livecode.com/viewtopic.php?f=7&t=29638#p157100 Richmond. On 8/16/17 10:07 pm, jbv via use-livecode wrote: Hi I have a blank... I need to use a prompt in the form of answer "Your choice" with "John" or "Mary" or "Cancel" the problem is that the number of options depends on the

Re: answer with...

2017-08-16 Thread Richmond Mathewson via use-livecode
This works: onmouseUp answer"your Choice" withfld "CHOIX" endmouseUp if fld "CHOIX" is a listField Richmond. On 8/16/17 10:07 pm, jbv via use-livecode wrote: Hi I have a blank... I need to use a prompt in the form of answer "Your choice" with "John" or "Mary" or "Cancel" the problem i