Re: 4D v16.2 false record locks

2017-09-19 Thread John DeSoi via 4D_Tech
> On Sep 19, 2017, at 3:21 PM, Tim Nevels via 4D_Tech <4d_tech@lists.4d.com> > wrote: > >> If a record wasn't unloaded in trigger properly, the record would be locked >> even after the invoking client user left the system (no longer signed in). >> The only way is to restart the server. > >

Re: SVG Scale

2017-09-19 Thread David Adams via 4D_Tech
SVG is a whole lot easier to manage in JavaScript. If for no other reason, you've got access to the D3 libraries. In V4, Mike Bostock wen to a lot of effort to break bits out into stand-alone libraries to make reuse easier without the whole D3 environment, and to encourage contributions from other

RE: v13.6 - 2 servers same network, how to make it work

2017-09-19 Thread Timothy Penner via 4D_Tech
Hi Alan, Did you see this? Tech Tip: Why can't I see my 4D Server? http://kb.4d.com/assetid=76047 -Tim ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: http://lists.4d.com/archives.html

Re: v13.6 - 2 servers same network, how to make it work

2017-09-19 Thread Alan Tilson via 4D_Tech
Hello everyone, I moved the server to another machine and it seems to be working, for now at least. Not sure what is going on! Alan On Tue, Sep 19, 2017 at 12:40 PM, Alan Tilson wrote: > Hello Koen & Douglas, > Thank you for confirming that I don't need to change the port

RE: 4D v16.2 false record locks

2017-09-19 Thread Stephen J. Orth via 4D_Tech
Having to restart the Server is a completely unacceptable solution for a "production" system. There needs to be a way for 4D, Developer, or Administrator to deal with this... Also, am I the only one who thinks the "locked" information returned is inaccurate? Steve -Original Message-

Re: 4D v16.2 false record locks

2017-09-19 Thread Tim Nevels via 4D_Tech
On Sep 19, 2017, at 2:00 PM, Alan Chan wrote: > If a record wasn't unloaded in trigger properly, the record would be locked > even after the invoking client user left the system (no longer signed in). > The only way is to restart the server. This is a great point. I wonder if any of the users

Re: SVG Scale

2017-09-19 Thread Tom DeMeo via 4D_Tech
Hi Jim, It’s a common misperception that scaling in SVG is easy. You can apply a transform to get one specific scaling scheme, but there are a number of possible rules you might need for how you might want an object to scale. How an object might scale using a simple transform is baked in. If

Re: SVG Scale

2017-09-19 Thread Jim Dorrance via 4D_Tech
Thanks Kieth, I'm sure you have set me on the right path! On Tue, Sep 19, 2017 at 6:58 PM, Keith Culotta via 4D_Tech < 4d_tech@lists.4d.com> wrote: > Sorry, there is also this: SVG_SCALING_CENTERED ( svgObject ; scale {; x ; > y} ) >

Re: SVG Scale

2017-09-19 Thread Keith Culotta via 4D_Tech
Sorry, there is also this: SVG_SCALING_CENTERED ( svgObject ; scale {; x ; y} ) http://doc.4d.com/4Dv16/4D/16/SVG-SCALING-CENTERED.301-3202422.en.html Keith - CDI > On Sep 19, 2017, at 11:03 AM, Jim Dorrance via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Hi, > > I am looking for a very

Re: 4D v16.2 false record locks

2017-09-19 Thread Alan Chan via 4D_Tech
If a record wasn't unloaded in trigger properly, the record would be locked even after the invoking client user left the system (no longer signed in). The only way is to restart the server. Alan Chan 4D iNug Technical <4d_tech@lists.4d.com> writes: >The client timeout will remove a dead user

ODBC import from Access into v15

2017-09-19 Thread Charles Miller via 4D_Tech
Hi all, I have a db that is used to convert some data. When it was a v11 database, I had no trouble importing from access data file Using same ODBC connection I can not import to v15. Anyone importing from access and if so how. Regards Chuck --

Re: v13.6 - 2 servers same network, how to make it work

2017-09-19 Thread Douglas Cryer via 4D_Tech
Alan, If you are running the databases on different servers each with their own IP address you should not need to change the ports at all. In this case, if both are set with the default ports then they will both be visible under available. If you are running two or more servers on the same

Re: v13.6 - 2 servers same network, how to make it work

2017-09-19 Thread Koen Van Hooreweghe via 4D_Tech
Hi Alan First of all, if the 2 servers are on the same network but on a different machine, there is no need to change the publication ports. Those 2 machines will have different IP addresses and you will see both in the 4D connection dialog. Changing ports is only needed if you run 2 4D

Re: SVG Scale

2017-09-19 Thread Keith Culotta via 4D_Tech
Here is a sample with the attributes hard coded: 100 and 2. Comment out (and in) the middle section to see the effect. $svg:=SVG_New $ref:=SVG_New_circle ($svg;100;100;20) SVG_SET_TRANSFORM_SCALE ($ref;2;2) SVG_SET_ATTRIBUTES ($ref;"cx";String(100/2);"cy";String(100/2))

Re: Form with Custom Grow Box

2017-09-19 Thread Cannon Smith via 4D_Tech
Here is a way for doing that: 1. Create a picture that looks like a window grabber and place it in the bottom right of the form. Put an invisible button over top of it. 2. In the invisible button, capture On Mouse Move and use "SET CURSOR(9005)” to change the mouse cursor to a resize icon. 3.

SVG Scale

2017-09-19 Thread Jim Dorrance via 4D_Tech
Hi, I am looking for a very quick way to scale a SVG object (circle, rect etc.) but not move the center of the object. I use: *DOM SET XML ATTRIBUTE*($tObjectRef;"transform";"scale(2)") And of course, the object is moved xy*2 Any ideas how to scale on object but not its position on the

v13.6 - 2 servers same network, how to make it work

2017-09-19 Thread Alan Tilson via 4D_Tech
Hello everyone, I thought I'd done this before but now cannot get it to work. How do I run 2 4d servers on the same network? I see where to change 2 port numbers but not 3. Is that the main thing? I did change the database name... I can't get the test db to show up under available... Thanks, Alan

RE: Form with Custom Grow Box

2017-09-19 Thread Piotr Chabot Stadhouders via 4D_Tech
@chip : Thanks for the suggestion, I will try this @Miyako : Ok, then the question is : Is there a way to mimic this behavior? What I am actually want to do is create a form window without title bar, but that still is resizable. Is there someone that knows how to accomplish this? Thanks,

Re: 4D v16.2 false record locks

2017-09-19 Thread npdennis via 4D_Tech
> On Sep 19, 2017, at 8:03 AM, Jeffrey Kain via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > The client timeout will remove a dead user after that period of activity. In > these cases, the user isn't even showing in the list of connected users on > the server, yet 4D reports the lock in that

Re: 4D v16.2 false record locks

2017-09-19 Thread Jeffrey Kain via 4D_Tech
The client timeout will remove a dead user after that period of activity. In these cases, the user isn't even showing in the list of connected users on the server, yet 4D reports the lock in that user's name. It's pretty weird. I guess others have seen this before, but it's new to me. I can

Re: 4D v16.2 false record locks

2017-09-19 Thread Chip Scheide via 4D_Tech
I am not on this version of 4D 15 or 16 but what about the client time out? might this have an effect? On Tue, 19 Sep 2017 09:28:24 +0200, Koen Van Hooreweghe via 4D_Tech wrote: > Hi Jeff, > > FWIW. I had this once in one of the two sites running the same app. A > few days after converting

Re: Form with Custom Grow Box

2017-09-19 Thread Chip Scheide via 4D_Tech
having not done this this *might* work a button (picture probably) on mouse down - get current mouse/window coords on mouse up - get mouse position - resize window to that position On Tue, 19 Sep 2017 06:58:40 +, Piotr Chabot Stadhouders via 4D_Tech wrote: > Hi, > > I think I have read

Re: 4D v16.2 false record locks

2017-09-19 Thread Koen Van Hooreweghe via 4D_Tech
Hi Jeff, FWIW. I had this once in one of the two sites running the same app. A few days after converting from v13 to v16. One user and his processes were still visible in the 4D admin window and there were two records (from different tables) locked. The user was out of the office. No way out.

Re: Form with Custom Grow Box

2017-09-19 Thread Keisuke Miyako via 4D_Tech
Hello, I think the bottom-right grow box is deprecated (v14, Mac OS X Lion, Windows) a window can now be resized from any side. > 2017/09/19 15:58、Piotr Chabot Stadhouders via 4D_Tech <4d_tech@lists.4d.com> > のメール: > I am not talking about maximize / minimize but on Windows the area in the >

Form with Custom Grow Box

2017-09-19 Thread Piotr Chabot Stadhouders via 4D_Tech
Hi, I think I have read somewhere that it is possible somehow to create a form with a custom grow box. I am not talking about maximize / minimize but on Windows the area in the right bottom corner of a window I want to open a Modal form dialog box and create my own grow box. Was I dreaming, or