Re: Data Merge from v13 to v15

2019-05-01 Thread Kirk Brooks via 4D_Tech
Ronnie, I was just reading through the thread here. I did a similar migration when I moved a database from v2004 to v13. In that case the v13 database was a major re-write of the original. There were significant differences in the new structure including removing a couple of subtables. And there wa

Re: Split Screen Support with 4D and MacOS?

2019-05-01 Thread Tom Benedict via 4D_Tech
It appears that Mission Control Split View is not supported in 4D versions prior to 17. I verified that it doesn’t work in 15.6 and 16.4 but it does work in 17R3, possibly in other v17 versions. Tom > On Apr 30, 2019, at 15:15, Jeffrey Kain via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > You

Re: Split Screen Support with 4D and MacOS?

2019-05-01 Thread Tom Benedict via 4D_Tech
Thanks for the suggestions Chip. Yes, I’ve got Dani Beaubein’s Code Analysis component which I can use to export and compare. This particular situation is relatively small and I was hoping for a quick and simple solution. Tom > On May 1, 2019, at 06:45, Chip Scheide <4d_o...@pghrepository.org>

Forums

2019-05-01 Thread Chip Scheide via 4D_Tech
personally - they are horrible I made a feature request for improvements: https://forums.4d.com/Post//29609582/1/ vote for and/or add your own Thanks Chip --- Gas is for washing parts Alcohol is for drinkin' Nitromethane is for racing

Re: How to set the font colour for rows in an array-based listbox?

2019-05-01 Thread Doug Cottrill via 4D_Tech
Pat, There are arrays for font color and font background color in the property list that 4D uses for the listbox if they exist. DKC > On May 1, 2019, at 4:58 AM, Pat Bensky via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > I can find plenty of info about setting the row font colour for a > sele

Re: Data Merge from v13 to v15

2019-05-01 Thread Doug Cottrill via 4D_Tech
I don’t think you will be able to synchronize the field order. Once a field is created, the field number is set. You can drag the field to a different place in the table so it presents in a logical order, but the underlying field number will not change, even if you delete a field. I think sen

Re: HTTP Get on 4D Server v15 - is it synchronous?

2019-05-01 Thread ADeeg via 4D_Tech
4D Tech mailing list wrote > Hi, > > We’re working on incorporating the retrieval of fairly voluminous xml from > our website in an interactive form in 4D. Since we have workstations > spread around about 50 locations accessing 4D Server over a VPN and the > web server is running in the same subne

Re: Resizing text on en Entry form

2019-05-01 Thread Chip Scheide via 4D_Tech
well it also has to take into account : - spacing BETWEEN objects. - vertical alignment - horizontal alignment ... and I was hoping not to have to re-invent the wheel, so to speak :) Chip On Wed, 1 May 2019 08:40:34 +0200, Herr Alexander Heintz via 4D_Tech wrote: > Its basically not that compl

Re: Connecting to FTP

2019-05-01 Thread ADeeg via 4D_Tech
4D Tech mailing list wrote > I run an FTP server for my clients. All of the connections are secure FTP > - port . > > I can’t get the FTP_Login to work. I assume that it is using regular FTP, > port 21. > > I tried ###.###.###.###: for the address, but no joy. > > Any Ideas? > > ___

Re: Split Screen Support with 4D and MacOS?

2019-05-01 Thread Chip Scheide via 4D_Tech
you can still do this - just expand the explorer windows to show the 'preview' or I do not remember who created it/them - but I know there are components which will export all methods to text you can then compare using something like Textwrangler's diff functions, or a Code management system, o

Re: Resizing text on en Entry form

2019-05-01 Thread ADeeg via 4D_Tech
4D Tech mailing list wrote > I have code to resize the font in a listbox/listing form. > > I was wondering if there anyone has code they would share to resize all > text on an entry form? something like command/control + (or -) on a > web page. > > Thanks > Chip Chip, attached to this bug Mes

Re: Resizing text on en Entry form

2019-05-01 Thread ADeeg via 4D_Tech
4D Tech mailing list wrote > I have code to resize the font in a listbox/listing form. > > I was wondering if there anyone has code they would share to resize all > text on an entry form? something like command/control + (or -) on a > web page. > > Thanks > Chip Chip, attached to this bug Mes

Re: How to set the font colour for rows in an array-based listbox?

2019-05-01 Thread Jeremy Roussak via 4D_Tech
Either, Pat. In the colorType parameter, pass the lk background color or lk font color constants to indicate whether you want to apply the color as the background or the font color of the row. If you omit this parameter, the color is applied as the font color. Jeremy > On 1 May 2019, at 12

Re: How to set the font colour for rows in an array-based listbox?

2019-05-01 Thread Pat Bensky via 4D_Tech
That applies to the background colour, not the text colour ): On Wed, 1 May 2019 at 11:32, Jeremy Roussak via 4D_Tech < 4d_tech@lists.4d.com> wrote: > Pat, > > LISTBOX SET ROW COLOR? > > Jeremy > > > > On 1 May 2019, at 09:58, Pat Bensky via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > > > I can f

Re: How to set the font colour for rows in an array-based listbox?

2019-05-01 Thread Jeremy Roussak via 4D_Tech
Pat, LISTBOX SET ROW COLOR? Jeremy > On 1 May 2019, at 09:58, Pat Bensky via 4D_Tech <4d_tech@lists.4d.com> wrote: > > I can find plenty of info about setting the row font colour for a > selection-based listbox, but how do we do it for an array-based listbox? > > Pat **

Re: Split Screen Support with 4D and MacOS?

2019-05-01 Thread Charles Miller via 4D_Tech
You could write code to export methods as text into two folders one for v15 and one for v16 and then use BBEdit to compare the methods. It will Illustrate the differences Regards Chuck On Wed, May 1, 2019 at 12:34 AM Tom Benedict via 4D_Tech < 4d_tech@lists.4d.com> wrote: > Thanks Chip, > > >- d

Re: Data Merge from v13 to v15

2019-05-01 Thread Charles Miller via 4D_Tech
I the case of sub tables I would convert them to standalone e tables in both subs before I tried to import You should have done this way back but need to do this now Regards Chuck On Tue, Apr 30, 2019 at 10:29 PM Ronnie Teo via 4D_Tech < 4d_tech@lists.4d.com> wrote: > Hi Mike, thanks for the rep

How to set the font colour for rows in an array-based listbox?

2019-05-01 Thread Pat Bensky via 4D_Tech
I can find plenty of info about setting the row font colour for a selection-based listbox, but how do we do it for an array-based listbox? Pat -- * CatBase - Top Dog in Data Publishing tel: +44 (0) 207 118 7889 w: http://www.catbase.com skype: pat.

Re: Collections and Entity Selections Cheat Sheets

2019-05-01 Thread Tilman Haerdle via 4D_Tech
Thank you, that ist really cool and to the point! Tilman extragroup GmbH · Pottkamp 19 · DE-48149 Münster +49 178 721 5210 · www.extragroup.de · tilman.haer...@extragroup.de Geschäftsführer: Lars Busch · Registergericht: Amtsge

Re: Connecting to FTP

2019-05-01 Thread Keisuke Miyako via 4D_Tech
I am reluctant to include v14 and v15 in the versions list because I no longer have them installed on my computer. technically, though, v14 and above share the same plugin architecture. > 2019/05/01 16:26、Robert McKeever via 4D_Tech <4d_tech@lists.4d.com>のメール: > > Unfortunately, The plug-in is f

Re: Connecting to FTP

2019-05-01 Thread Robert McKeever via 4D_Tech
Unfortunately, The plug-in is for V16 and v17. The client is v15. > On Apr 30, 2019, at 7:05 PM, Chuck Miller via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > I believe you can’t do secure ftp this way. I think the famous Miyako wrote a > wrapper plugin for curl. Check his site out > > Regards