4D Write Freeze document and Freeze selection not working in v16?

2018-08-14 Thread JOHN BAUGHMAN via 4D_Tech
Before I call TS, could someone please check to see it Freeze document and Freeze selection works for them in v16R6. After upgrading from v15 to v16, selecting these from the 4D Write menu bar has no affect. References remain intact. Thanks, John John Baughman john...@hawaii.rr.com *

E-Mail in 4D

2018-08-14 Thread Jody Bevan via 4D_Tech
The last time I wrote an E-Mail client with 4D was circuit 4D v11 and into v12. It worked great. I left the programming world for a break for 2 years, and then got back in. Now I am using 16R6, and will likely move into the v17. releases for a product I am working on. From my review today, and

Re: SVG IDs in Listbox Cells

2018-08-14 Thread Keisuke Miyako via 4D_Tech
the SVG component commands are essentially DOM wrappers, it feels like an overkill to parse the XML just to get a handle on the xml:id. (don't forget to close/clear the reference $svg. alternatively you could use the "own" option) maybe you could have an invisible or size 0 picture object on the

Re: Some Older PCs Unable to run 4D Client in 64 bit

2018-08-14 Thread James Brown via 4D_Tech
See the thread on this list with subject, "V17 client crash on open”. We just moved from version 15.5 to 17.0 and had this issue with a 2007 iMac. I spent ages trying to find out why it wouldn’t open. Then the iNug (Tim) came to the rescue - it was not until 2008 that iMacs had the Intel chips w

Re: SVG IDs in Listbox Cells

2018-08-14 Thread Keisuke Miyako via 4D_Tech
the command http://doc.4d.com/4Dv17/4D/17/LISTBOX-GET-CELL-COORDINATES.301-3730216.en.html should be useful to place a picture object exactly over a listbox cell. http://download.4d.com/Demos/4D_v15/HDI/GetListboxCoordinates.zip but there might be negative sides effects, such as the mouse roll

Re: SVG IDs in Listbox Cells

2018-08-14 Thread John J Foster via 4D_Tech
Hi Cannon, Yep, that’s what I was thinking. Just need a bit of scaffolding. Just needs to be handle indirectly and not in the cell. And what then what Keith said should make it able to manipulate the DOM and then do whatever you need. I thought the idea was doable. Cool! John… > It is actua

Re: V17 and Edit menu (Copy)

2018-08-14 Thread Jeffrey Kain via 4D_Tech
Well, this is what it turned out to be. I had fixed a bunch of these places but I missed a small handful. I didn't report the issue either since it was such a simple little fix, but other developers converting to v17 should definitely be aware of this one. Thanks all, Jeff > On Aug 14, 2018,

Zoom box removal + window title icon placement

2018-08-14 Thread Keith Goebel via 4D_Tech
Hi all. Playing with 4D v17.0 HF1 Win... 1) Zoom box removal Is there a 4D command that will remove the zoom box stuff from a window already open? 2) Window title bar icon Is there a 4D command that will insert an icon into the left end of a window title bar? (window already open) I know these

Re: ORDA, 4D v17 & Training

2018-08-14 Thread Donna GALLIS via 4D_Tech
Hello everyone, This is my first submission, so please forgive me if the format is wrong or does not fit the topic. I’m the Field Marketing Manager for 4D, North America. I want to let everyone know we are hosting another 4D Essentials Training in October. For those developers who want to spe

RE: Some Older PCs Unable to run 4D Client in 64 bit

2018-08-14 Thread Timothy Penner via 4D_Tech
The chipset must support SSE4,1 in order to run 64 bit versions of 4D. This requirement has existed for a while and is on the certification matrix of v14, 15, and 16: { (1) Instruction set SSE 4.1 must be available if using 64-bit 4D applications. SSE 4.1 exists in most Intel CPU’s starting 2008.

Re: V17 and Edit menu (Copy)

2018-08-14 Thread Dave Nasralla via 4D_Tech
I first ran across this with v16R6, but in conversations with other developers, not everyone was running into the same issue, so I didn't report it as a bug (or take the time to isolate and repeat). In my case, the commands were being called from a component (Foundation v5.7). Good luck, dave On

Re: Some Older PCs Unable to run 4D Client in 64 bit

2018-08-14 Thread Jeffrey Kain via 4D_Tech
It might have been on forums.4d.com - you need to have a certain level of chipset for 64-bit. Some level of SSE support is required. I think it's documented. > On Aug 14, 2018, at 12:44 PM, Dave Nasralla via 4D_Tech > <4d_tech@lists.4d.com> wrote: > > Just wondering if anyone else has run into

Re: V17 and Edit menu (Copy)

2018-08-14 Thread Jeffrey Kain via 4D_Tech
Thanks for the tip - I ran across this too and had already changed all of those. I'm going to double-check though. > On Aug 14, 2018, at 11:53 AM, Dave Nasralla via 4D_Tech > <4d_tech@lists.4d.com> wrote: > > Yes I have seen this. The first thing I would look at is the command: > SET MENU ITEM

Some Older PCs Unable to run 4D Client in 64 bit

2018-08-14 Thread Dave Nasralla via 4D_Tech
Hi All, Just wondering if anyone else has run into this. We have a older Dell PC - Optiplex 745 - purchased in 2008. It is currently running Windows 10 64bit. We were experiencing crashes (very predictable) with certain button clicks which ran fairly benign code when I moved to a 64bit Windows cli

RE: v17.0 HF1 Bug Fix delayed process not waking fix

2018-08-14 Thread Timothy Penner via 4D_Tech
Hi Tim, > ACI0098368 A delayed processes do not wake up if paused and then resumed: > it stays in pause mode. The same bug fix is also in the following v16.x nightly build: Version : 16.3 Change : 225762 https://bugs.4d.fr/fixedbugslist?branch=16 -Tim

Re: V17 and Edit menu (Copy)

2018-08-14 Thread Dave Nasralla via 4D_Tech
Yes I have seen this. The first thing I would look at is the command: SET MENU ITEM PROPERTY(<>Fnd_Menu_FileMenu_t;-1;Associated standard action;ak quit) The old constants need to be updated to the new ones (eg. ak quit) . I found if I "touched" a method with the old constants, they no longer work

Re: SVG IDs in Listbox Cells

2018-08-14 Thread Cannon Smith via 4D_Tech
Hi Keith, I just tried a little test and, yes, it does seem to work. I’ll play with this some more and see if all the parts will come together. Thanks! -- Cannon.Smith Synergy Farm Solutions Inc. Hill Spring, AB Canada 403-626-3236 > On Aug 14, 2018, at 8:52 AM, Keith Culotta via 4D_Tech <4

Re: SVG IDs in Listbox Cells

2018-08-14 Thread Keith Culotta via 4D_Tech
Can you then $svg:=SVG_Open_picture (agRM_Graph{1}) $ref:=SVG_Find_ID ($svg;"Value1") SVG_SET_ATTRIBUTES ($ref;"fill-opacity";"1";"stroke-opacity";"1") agRM_Graph{1}:=SVG_Export_to_picture ($svg) ? Keith - CDI > On Aug 14, 2018, at 9:40 AM, Cannon Smith via 4D_Tech <4d_tech@lists.4d.com> > wr

Re: SVG IDs in Listbox Cells

2018-08-14 Thread Cannon Smith via 4D_Tech
Thanks for everyone who commented on this. It is actually _almost_ doable. With some math it is possible to figure out where the cursor is over a particular picture cell and "SVG Find element ID by coordinates” works in this context. For example: $tID:=SVG Find element ID by coordinates

Re: SVG IDs in Listbox Cells

2018-08-14 Thread John J Foster via 4D_Tech
Hi Miyako, I was thinking of something more dynamic (and a bit more work). But if anyone would know it would be El Miyako. Thanks, John… > the corroboration between form events (mouse, move, enter, leave, click, > double click) and SVG elements, > as well as automatic update of MOUSEX and MO

Google Translate API

2018-08-14 Thread Pat Bensky via 4D_Tech
Anybody used the Google Translate API to dynamically do translations in their 4D db? -- * CatBase - Top Dog in Data Publishing tel: +44 (0) 207 118 7889 w: http://www.catbase.com skype: pat.bensky * **