Re: DocuSign and 4D

2019-07-10 Thread Luc Devar via 4D_Tech
QPDF Plugin by Rob Laveaux of Pluggers Software would definitely help you on this. I am using it with great success. Very good tool to edit PDF documents, adding fields, signature fields, actions, etc. Luc Devar > On Jul 10, 2019, at 16:57, Jim Hays via 4D_Tech <4d_tech@lists.4d.com> wrote:

DocuSign and 4D

2019-07-10 Thread Jim Hays via 4D_Tech
We have a need to "implement DocuSign". The customer doesn't really know how this might happen however. They need to send out multiple PDFs, possibly place them on a web site for users to download and sign. Does anyone have some good information about how this might work with 4D? I can think of a

Re: Linear Regression Graph

2019-07-10 Thread stardata.info via 4D_Tech
Thanks Scott, I need to do with 4D if it possibile. Thanks /Ferdinando/ Il 10/07/2019 21:00, 4d_tech-requ...@lists.4d.com ha scritto: Message: 4 Date: Wed, 10 Jul 2019 10:12:54 -0700 (MST) From: Scott Staley To:4d_tech@lists.4d.com Subject: Re: Linear Regression Graph

Re: Linear Regression Graph

2019-07-10 Thread Scott Staley via 4D_Tech
I use google charts to do trendlines... https://developers.google.com/chart/interactive/docs/gallery/trendlines Also, Excel can do trendlines as well so there is a good chance that View Pro can do them. -- Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html

spelling check in 4D v15.6 4DView W7

2019-07-10 Thread ernest hilgers via 4D_Tech
Hi All, 4D v15.6 pc W7. Created a database solution for a customer and on an input form is placed a 4D View area. Due to different criteria (spellchecking) it’s a better candidate than a listbox. (historically they were entering data into a spreadsheet). So I wanted to cater to that

Linear Regression Graph

2019-07-10 Thread stardata.info via 4D_Tech
Hi All, I need to do a graph with the indication of the linear regression. Now I have done a graph of type 6 that draw 4 points, but I need to draw even a line that displays the linear regression. Someone know how i can do it? Thanks Ferdinando

RE: What is wrong with this statement?

2019-07-10 Thread Epperlein, Lutz (agendo) via 4D_Tech
If $Return_ptr and $Column1 are pointers, you have to dereference them: $Result:= $Column1->{ $Return_ptr->{$Item} } For better clarity I would extract $Return_ptr->{$Item} $index_col:= $Return_ptr->{$Item} $Result:= $Column1->{ $index_col } HTH Regards Lutz