Re: Trace Command in V18.3

2020-10-28 Thread Bernard Escaich via 4D_Tech
I have this issue once or twice a year. It appears and disappears without any action from me. It is painful ! > Le 28 oct. 2020 à 18:18, Dave Slayton via 4D_Tech <4d_tech@lists.4d.com> a > écrit : > > I just installed v18…the trace command doesn’t seem to be working…. > anyone else having this

Re: Object notation replacement for use of Self in a script — v18

2020-05-06 Thread Bernard Escaich via 4D_Tech
Why not use Form event.objectName ? I find it very useful ; I use it and write in form method : Case of :(Form event.code=On data change) Case of :(Form event.objectName="Name) Object get pointer(Object named;"Name")->:=MyMethodUppercase( Object get pointer(Object

Re: v18r2 — File Object Folder?

2020-04-23 Thread Bernard Escaich via 4D_Tech
Chris, Look at folder.parent Cordialement, Bernard Escaich > Le 22 avr. 2020 à 06:04, Chris Belanger via 4D_Tech <4d_tech@lists.4d.com> a > écrit : > > .parent

Re: Longitude Index: B-Tree or Cluster

2020-04-18 Thread Bernard Escaich via 4D_Tech
John, In Math4D, method names are all in English. All descriptions are in English (and in French…) Forms have not been translated yet, because some use old technologies as Draw and Graph. You don’t need them, if you have a great number of calculations, because you will use direct calls to the

Re: Longitude Index: B-Tree or Cluster

2020-04-14 Thread Bernard Escaich via 4D_Tech
>> Since all string is text is there a still a way to tell 4D that a field and >> thus an index is a fixed size? >> >> Anyway we shall see if theory and implementation matches! >> >> Appreciate, >> John… >> >> >> >>> On Ap

Re: Simple find and replace in 4D Write Pro.

2020-04-14 Thread Bernard Escaich via 4D_Tech
Luc, For Find and replace, try this method Reference inside Cordialement, Bernard Escaich > Le 14 avr. 2020 à 22:36, Luc Devar via 4D_Tech <4d_tech@lists.4d.com> a écrit > : > > I am still using 4Dwrite and need to eventually convert to 4DwritePro but did > not find the time to start

Re: Longitude Index: B-Tree or Cluster

2020-04-13 Thread Bernard Escaich via 4D_Tech
Hi John, From the top of my head, indexes on long are less efficient than on text values ; I have a doubt, perhaps only for updating. You could test adding two fields with longitude and latitude converted in text values with appropriate leading zéros for search ? Cordialement, Bernard Escaich

Re: Longitude Index: B-Tree or Cluster

2020-04-12 Thread Bernard Escaich via 4D_Tech
John, You have geodesic functions in Math4D, component available here : https://forums.4d.com/Post/EN/31847250/1/31847251#31847251 HTH Cordialement, Bernard Escaich > Le 10 avr. 2020 à 02:03, John J Foster via 4D_Tech <4d_tech@lists.4d.com> a > écrit : > > Hi All, > > I have a GEO

Re: Trouble with Comment Blocks v18

2020-03-10 Thread Bernard Escaich via 4D_Tech
Me too ! > Le 10 mars 2020 à 21:18, Sannyasin Siddhanathaswami via 4D_Tech > <4d_tech@lists.4d.com> a écrit : > > Yes. Dot notation works fine. > > Sannyasin Siddhanathaswami > On Mar 10, 2020, 12:11 AM -1000, Vincent de Lachaux via 4D_Tech > <4d_tech@lists.4d.com>, wrote: > Is the database

Re: Trouble with Comment Blocks v18

2020-03-10 Thread Bernard Escaich via 4D_Tech
I have the same issue. V18 Mojave Cordialement, Bernard Escaich > Le 9 mars 2020 à 21:24, Sannyasin Siddhanathaswami via 4D_Tech > <4d_tech@lists.4d.com> a écrit : > > Aloha, > > I’m having trouble getting the new comment blocks to work in v18. Seems silly > simple but doesn’t work: >

Re: ORDA previous and next win a form.

2020-01-18 Thread Bernard Escaich via 4D_Tech
Eric, This thread https://forums.4d.com/Post/EN/32868394/1/32881535#32881535 with https://translate.google.com/#view=home=translate=fr=fr could help you. Cordialement, Bernard Escaich > Le 17 janv. 2020 à 18:13, Eric Naujock via

Re: 4D write pro add a new section.

2020-01-12 Thread Bernard Escaich via 4D_Tech
Thanks Jeremy. Eric, this is working nice : $range:=WP Text range(wpDoc;wk start text;4000) WP INSERT BREAK($range;wk section break;wk append) $section:=WP Get section(wpDoc;1) WP SET ATTRIBUTES($section;wk column count;2) $section:=WP Get section(wpDoc;2) WP SET ATTRIBUTES($section;wk column

Re: 4D write pro add a new section.

2020-01-11 Thread Bernard Escaich via 4D_Tech
I have made a test : $range:=WP Text range(wpDoc;100;100) INVOKE ACTION("insertSectionBreak") $range:=WP Text range(wpDoc;0;100) WP SET ATTRIBUTES($range;wk column count;2) $range:=WP Text range(wpDoc;100;200) WP SET ATTRIBUTES($range;wk column count;3) Error message « Attribute 130 not authorize

Check boxes : Boolean or longing ?

2019-11-29 Thread Bernard Escaich via 4D_Tech
Hi all, If I insert a check box ‘MyCheckbox’ in a form with a expression ‘Form.MyCheckbox’, this expression has a numerical value. If I declare on load Form.MyCheckbox:=True, it is a boolean. I find counter-intuitive to have a boolean represented by a numeric value and prefer to write If

Utilisation of JSON Resolve pointers

2019-03-20 Thread Bernard Escaich via 4D_Tech
Hi, I would like to merge objects with inheritage ; for example, merge a general variant with a user variant, the user variant containing only properties to be modified. JSON Resolve pointers seems adapted but it allows only pointers to files or to a subobject of current object. It seems not

Re: Setting Zoom in a 4D Write Pro Area

2019-02-05 Thread Bernard Escaich via 4D_Tech
Tom, Are you in Page mode ? Cordialement, Bernard Escaich > Le 5 févr. 2019 à 01:05, Tom Dillon via 4D_Tech <4d_tech@lists.4d.com> a > écrit : > > From the Tech Tip "Programatically set the Zoom in 4D Write Pro" > the following should set the zoom level

Write Pro Toolbar

2018-10-18 Thread Bernard Escaich via 4D_Tech
Hi all, Write Pro seems OK for migration, so I try to convert my Write documents to WP. Conversion is OK* with : $MyBlobWrite_x:=WR Area to blob(MyAreaWrite;1) [MyTable]MyWPObject:=WP New($MyBlobWrite_x) I have put WP object with new toolbar in my form, from object library ;

Re: 4D Summit

2018-03-27 Thread Bernard Escaich via 4D_Tech
Now, you can trust your eyes : http://escaich.free.fr/photos/4d/a7r19290_wayne_stewart.jpg ! > Le 23 mars 2018 à 14:49, Chip Scheide via 4D_Tech <4d_tech@lists.4d.com> a > écrit : > > Pictures or it did not happen :) > > On

Re: Statistical functions

2017-12-25 Thread Bernard Escaich via 4D_Tech
On the last version, all methods are in english and documented in english. Unhappily, the interface was build with Chart and Draw and has not been rewritten. Merry Christmas ! Envoyé de mon iPhone > Le 23 déc. 2017 à 09:48, Arnaud de Montard via 4D_Tech <4d_tech@lists.4d.com> > a écrit : > >