Re: 4D Server v17.1 and time change

2019-03-11 Thread Cannon Smith via 4D_Tech
Thanks, Jeff. I’ll be sending out 1 v17.1 build next month and hope to see the same thing. I still have the issue several times a week in v16r6. Thanks. -- Cannon.Smith Synergy Farm Solutions Inc. Aetna, AB Canada > On Mar 11, 2019, at 5:19 PM, Jeffrey Kain wrote: > > No, not at all since

Re: 4D Server v17.1 and time change

2019-03-11 Thread Jeffrey Kain via 4D_Tech
No, not at all since v17.0 initial release. > On Mar 11, 2019, at 7:07 PM, Cannon Smith > wrote: > > Thanks. Good to know it has been solid otherwise. > > P.S. Have you seen the delayed process not waking up issue since moving to > v17.1?

Re: 4D Server v17.1 and time change

2019-03-11 Thread Cannon Smith via 4D_Tech
Thanks. Good to know it has been solid otherwise. P.S. Have you seen the delayed process not waking up issue since moving to v17.1? -- Cannon.Smith Synergy Farm Solutions Inc. Aetna, AB Canada > On Mar 11, 2019, at 4:47 PM, Jeffrey Kain wrote: > > Nobody else has responded... so I guess it

Re: 4D Server v17.1 and time change

2019-03-11 Thread Jeffrey Kain via 4D_Tech
Nobody else has responded... so I guess it was just us. Or maybe not that many are running client/server in v17.1 yet. Aside from this weird glitch v17.1 has been very solid. -- Jeffrey Kain jeffrey.k...@gmail.com > On Mar 11, 2019, at 3:57 PM, Cannon Smith via 4D_Tech <4d_tech@lists.4d.com

Re: Dropbox Upload and Dropbox Download Methods

2019-03-11 Thread Tim Nevels via 4D_Tech
On Mar 10, 2019, at 9:34 AM, Douglas von Roeder wrote: > Agree with Kirk — thanks for posting this! The place that does my ftp hosting is killing it, so I needed to find a new ftp host. Then I thought… why not use Dropbox? I’ve got a 1TB of space there that is not being used. I’m just getting

4D V16 R6 Vs 4D V16.5

2019-03-11 Thread stardata.info via 4D_Tech
slating the curl example properly into 4D. Help? Maybe send a content-type : Content-Type: application/x-www-form-urlencoded Then, you need to be sure the data you send (the values of your variables) is properly url encoded... HTH Bruno LEGAY A&C Consulting -- next

Re: Windows Build - STR# 10135, 18/19 Folders

2019-03-11 Thread John J Foster via 4D_Tech
Hi All, Windows 4D v17R4 Engined running under Windows 10 Home. I cannot see any examples or tech tips or 4D NUG where it’s mentioned that a build of an engined version of my app creates two folders like: STR# 10135, 18 -> Appname.4dbase -> includes the .4DC/.4DIndy files STR# 10135, 19 -> Appn

Re: 4D Server v17.1 and time change

2019-03-11 Thread Chip Scheide via 4D_Tech
This will not be fixed until Daylight Savings, or Standard Time is done away with, and there is no more +/- 1 hour at random places around the world :) and just BECAUSE. (they can i guess???) https://www.timeanddate.com/time/time-zones-interesting.html there are 30 minute, and 45 minute

Re: 4D Server v17.1 and time change

2019-03-11 Thread Cannon Smith via 4D_Tech
Hi Jeff, We had to relaunch all our servers for them to get the time update, but they are still on v16r6. I thought the daylight saving bug had been fixed in v17.1 so I’m curious to know what you find if you get more information. Good luck. -- Cannon.Smith Synergy Farm Solutions Inc. Aetna, AB

Re: Looping and control flow

2019-03-11 Thread Chip Scheide via 4D_Tech
if what you want is a 'deamon' a task that looks for work, does it and goes to sleep allowing other actions to take place. repeat if (work to do) do work end if delay process(current process; duration in tiks)) (or) pause process(current process) until (exit 4D) tik = 1/60

Re: Looping and control flow

2019-03-11 Thread Sandor Szatmari via 4D_Tech
From: Koen Van Hooreweghe via 4D_Tech <4d_tech@lists.4d.com> From the top of my head. What about: something:=true while(something)     if(not interested)          something:=false     else          process     end if end while HTH Koen Yes, I considered this.  I was specifically look

Re: Looping and control flow

2019-03-11 Thread Koen Van Hooreweghe via 4D_Tech
From the top of my head. What about: something:=true while(something) if(not interested) something:=false else process end if end while HTH Koen > Op 11 mrt. 2019, om 19:41 heeft Sandor Szatmari via 4D_Tech > <4d_tech@lists.4d.com> het vo

Looping and control flow

2019-03-11 Thread Sandor Szatmari via 4D_Tech
Does 4D have the concept of continue like while (something)    if (not interested)   continue    // Process what I'm interested in end while Sandor Szatmari Senior Software Developer Bristol Capital Inc. - InfoPlus 201 746 7215 www.infoplusonline.com CONFIDENTIALITY

Re: Lep Redirect

2019-03-11 Thread Keisuke Miyako via 4D_Tech
first, you should check the documentation of the command you use, to see if they support stdOut output. ( " -o - " or something like that) if not, you might want to consider calling it via bash or some other shell program. c.f. https://kb.4d.com/assetid=77974 https://kb.4d.com/assetid=76658 >

Re: Help LEP macOS to open the Emoji viewer

2019-03-11 Thread ADeeg via 4D_Tech
4D Tech mailing list wrote > it seems the code > > CGEventPost(kCGHIDEventTap, e); > > cancels the pressed state of control, option, fn, command (but not shift) > implicitly. > > I've changed the code to support a combination of modifiers. > > https://github.com/miyako/4d-plugin-virtual-key >

Re: Re: OAuth

2019-03-11 Thread Bruno LEGAY via 4D_Tech
Hi, > curl -X POST --data \ > 'client_secret=[YOUR-CLIENT-SECRET]&client_id=[YOUR-CLIENT-ID]&grant_type=authorization_code&redirect_uri=[YOUR-REDIRECT-URI]&code=[AUTHORIZATION-CODE]' > \ > https://test-api.service.hmrc.gov.uk/oauth/token > > > I’ve tried this: > > $url:="https://test-api.servi