Re: Control or right click to show popup menu

2022-10-03 Thread Peter Bogdanoff via use-livecode
Thanks, Craig. That is exactly the solution if figured out over the weekend, use the click command to click at the mouseLoc. Peter > On Oct 3, 2022, at 6:47 AM, Craig Newman via use-livecode > wrote: > > Hi. > > On a new card make a field and a pulldown menu button. Place a few lines of >

Re: Quick and simple web demos?

2022-10-03 Thread Bob Sneidar via use-livecode
This is so rediculously typical of any search features on any number of web sites. Copier partner portals are right up there. You can search for anything and get a plethora of everything EXCEPT anything you are searching for. Bob S > On Sep 30, 2022, at 18:03 , Mark Wieder via use-livecode

Re: RegEx to convert standard date to sql date

2022-10-03 Thread Bob Sneidar via use-livecode
Thanks I'll try that. Looks like just what I neeed. Bob S On Oct 1, 2022, at 04:30 , Kaveh mailto:ka...@rivervalleytechnologies.com>> wrote: Search for (\d\d)\/(\d\d)\/(\d\d\d\d) replace with \3\1\2 See here On Fri, 30 Sept 2022 at 23:46, Bob Sneidar via

Re: Control or right click to show popup menu

2022-10-03 Thread Craig Newman via use-livecode
Hi. On a new card make a field and a pulldown menu button. Place a few lines of text in the field and lock it. In the field script: on mouseUp set the loc of btn 1 to the mouseloc click at the mouseLoc end mouseUp The menu opens at the line clicked on. This has been discussed extensively