Re: 4D v16.4 Built database won't open in Mojave

2018-11-26 Thread Allan Udy via 4D_Tech
Walt, Sorry - haven't been reading the NUG for a couple of weeks -- did you ever solve this issue? I had something very similar a few months back with v16 and a client who had upgraded his machine to High Sierra -- suddenly the app stopped working in a very similar way. >From memory we had

Re: Transferring Build Mac Client via Google Drive Web Interface Fails

2018-11-26 Thread Jeremy Roussak via 4D_Tech
> On 20 Nov 2018, at 15:27, Dave Nasralla via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Is there an easy way to get the file path to the built client and > server apps for the command line? > Not that I know of. I have it hard-coded, which means that it breaks if I fiddle with it. So I don’t

Re: TAOW (Mojave and CREATE THUMBNAIL)

2018-11-26 Thread JOHN BAUGHMAN via 4D_Tech
Thanks Keisuke. So I must be going to the wrong place to see the bug list. I always end up at taow.4d.com but only see my support cases. I thought I could search the TAOW for reported issues before reporting my own. Is this not the case? If not, how? Thanks, John > On Nov 25, 2018, at 3:00

Re: One Set of Code for Form Object Populated Forms as well as Field-Based Detail View Forms

2018-11-26 Thread Douglas von Roeder via 4D_Tech
Miyako: "it is not a bug." Thank you for confirming that. -- Douglas von Roeder 949-336-2902 On Fri, Nov 23, 2018 at 3:35 PM Keisuke Miyako via 4D_Tech < 4d_tech@lists.4d.com> wrote: > it is not a bug. > > the 1st generation of form design in 4D was to bind process variables to > objects and u

Re: v16.4 Desktop application, Rejected

2018-11-26 Thread Carl Aage Wangel via 4D_Tech
Thanks Jeffrey and Keisuke, But I am at a bit of a loss as where to find OpenSSL in 4D and how to update the libraries (same for jQuery). I have been using 4D since version 1 (or 2?) but have never fiddled with OpenSSL. As I understand it OpenSSL v0.9.8 was part of 4D 2004, so it seems strange tha

Re: 4D Server automatically setting 'Reject New Connections' ?

2018-11-26 Thread Tim Nevels via 4D_Tech
On Nov 26, 2018, at 3:06 AM, Allan Udy wrote: > Has anyone else seen 4D Server spontaneously 'dropping' 4D Client > connections, and automatically setting the 'Reject New Connections' > option in the server Administration window? > > We've seen this with both v16 and v17. Usually when the DBA g

Re: JSON from Google Sheet to Property Object

2018-11-26 Thread Sannyasin Siddhanathaswami via 4D_Tech
Last email didn’t work right. I think a Collection might be the way to go with this. If I create a collection of objects: {“ID”:”5912029","First Name”:”Sannyasin”}, {“ID”:”6015906","First Name”:”Mayuran”} I should be able to access the data very easily. Sannyasin Siddhanathaswami On Nov 25, 201

Re: JSON from Google Sheet to Property Object

2018-11-26 Thread Sannyasin Siddhanathaswami via 4D_Tech
** 4D Internet Users Group (4D iNUG) Archive: http://lists.4d.com/archives.html Options: https://lists.4d.com/mailman/options/4d_tech Unsub: mailto:4d_tech-unsubscr...@lists.4d.com ***

Re: JSON from Google Sheet to Property Object

2018-11-26 Thread Sannyasin Siddhanathaswami via 4D_Tech
That makes sense. No wonder I’m confused. :) But if I convert: [ [ID,First Name,Last Name], [5912029,Sannyasin,Siddhanathaswami], [6015906,Mayuran,Sokkan] ] to an array of objects: [ {“ID”:”5912029","First Name”:”Sannyasin”}, {“ID”:”6015906","First Name”:”Mayuran”} ] Does than mean I can access

Re: JSON from Google Sheet to Property Object

2018-11-26 Thread Keisuke Miyako via 4D_Tech
you are confusing property names and array positions. $lastName:=$convertedObject[“ID”][“6015906”][“Last Name”] this would infer {"ID":{"6015906":{"Last Name":__here_}}} if the target is [ [ID,First Name,Last Name], [5912029,Sannyasin,Siddhanathaswami], [6015906,Mayuran,Sokkan] ] then the not

JSON from Google Sheet to Property Object

2018-11-26 Thread Sannyasin Siddhanathaswami via 4D_Tech
Aloha, I’m getting my feet wet with v17’s dot notion/objects. My first use is converting a Google Sheet JSON into something easily accessible. I was thinking to a property:value 4D Object. Does anyone have a utility method that does this? It’s a JSON array of arrays from the Google Sheet that