Re: Subform get record info when click on row

2019-11-23 Thread Kirk Brooks via 4D_Tech
Gary, v17 is great. So, the first thing I would suggest is to think about using a listbox instead of output subform. Unless you have some really complicated implementation of an output subform (like here https://forums.4d.com/Post/EN/32395457/1/32395458) I doubt there's much to be gained using

Re: Subform get record info when click on row

2019-11-23 Thread Garri Ogata via 4D_Tech
Hi Kirk v17. let me know if there is a best version I will switch to it. Thanks, Garri From: 4D_Tech <4d_tech-boun...@lists.4d.com> on behalf of Kirk Brooks via 4D_Tech <4d_tech@lists.4d.com> Sent: Sunday, November 24, 2019 3:02 AM To: 4D iNug Technical

Re: Subform get record info when click on row

2019-11-23 Thread Kirk Brooks via 4D_Tech
Gary, What version are you working on? On Sat, Nov 23, 2019 at 3:57 PM Garri Ogata via 4D_Tech < 4d_tech@lists.4d.com> wrote: > Greetings, > > I have an output subform (list, selection mode none, enterable in list), > that I want to get the record clicked on when a user clicks in a field >

Re: Subform get record info when click on row

2019-11-23 Thread Garri Ogata via 4D_Tech
Hi Keisuke, Thanks for your quick response. I had tried the options you suggested with no luck. I need to do the following: When a user clicks on a row I would set some information based on values in the row (record). Ideally I would like them to click and immediately enter hence (none) as

Re: Subform get record info when click on row

2019-11-23 Thread Keisuke Miyako via 4D_Tech
Hello, I don’t have an answer off the top of my head, But I suppose you could try a couple of things: - call LOAD RECORD assuming that the current records is the clicked record, just not loaded I wouldn’t normally count on the clicked event and the clicked record to get the current record

Debug log analyzer v14

2019-11-23 Thread Two Way Communications via 4D_Tech
Has anybody used the newest Debug log analyzer? It seems to me that there are some bugs in it. e.g., when I get the list of ’top’ calls, it lists a specific method as being called 22 times in a selected process. If I than look at all the operations for that process, which is another tab, and

Subform get record info when click on row

2019-11-23 Thread Garri Ogata via 4D_Tech
Greetings, I have an output subform (list, selection mode none, enterable in list), that I want to get the record clicked on when a user clicks in a field (cell) in the subform. Is there a way to do this? I have the on clicked event set and when I trace it does not show the record info? Is

Re: Removing progress window while printing to PDF a 4D write documents.

2019-11-23 Thread Arnaud init5 imap via 4D_Tech
> Le 21 nov. 2019 à 21:42, Koen Van Hooreweghe via 4D_Tech > <4d_tech@lists.4d.com> a écrit : > > Hi Luc, > > In my code I have: > SET PRINT OPTION(Hide printing progress option;1) > > Strangely enough, I can't find this option any more in the v17R6 language > reference. But I think it is

Re: Jumpy forms in 64-bit

2019-11-23 Thread Jim Hays via 4D_Tech
Yes! That fixes the slow response and menu flashing. Are there other changes in this version? I see that it is version 3.0. Thanks Rob. Jim On Sat, Nov 23, 2019 at 7:38 AM Rob Laveaux via 4D_Tech < 4d_tech@lists.4d.com> wrote: > > > On 22 Nov 2019, at 22:36, Jim Hays via 4D_Tech

Re: Jumpy forms in 64-bit

2019-11-23 Thread Rob Laveaux via 4D_Tech
> On 22 Nov 2019, at 22:36, Jim Hays via 4D_Tech <4d_tech@lists.4d.com> wrote: > > We are running in v17.2 - 64bit server, 32-bit client. > We have some strange redraw with our Canvas plugin objects when we test > with 64-bit client. > They are sluggish to redraw when moving the mouse, and the

Re: 4D Web Server Security

2019-11-23 Thread Paul Dennis via 4D_Tech
I always run 4d webserver behind an niginx web proxy. Nginx can server static content then forward valid requests. You can use the rewrite rules to validate requests. 4D then does the rest via on web Connection authentication. Nginx is open source, I run the Windows version as a service.