Re: 4D Integration with Microsoft Dynamics AX 2012 "cube"

2018-07-02 Thread Dan Ivy via 4D_Tech
Let me simplify this query. Has anyone connected any version of 4D directly to Microsoft Dynamics AX ERP for any reason? I would love to hear about it. Thank you! Dan Ivy ivyleaf systems -- Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html

Re: 4D Write, pictures in page, frozen document, to 4D Write Pro

2018-07-02 Thread Keisuke Miyako via 4D_Tech
The "Tip" was based on macOS native PICT to PDF conversion. Write Pro does not use PICT to store previews, in fact, it does not store renderings of any kind, so one must use WP PRINT and invoke the printing mechanism in order to generate PDF.

Re: FORM GET OBJECTS and getting info about Subforms

2018-07-02 Thread Kirk Brooks via 4D_Tech
Bob, First off what version are you working in? On Mon, Jul 2, 2018 at 12:29 PM Bob Miller via 4D_Tech <4d_tech@lists.4d.com> wrote: > I can't seem to figure out how to get the form name and table name of the > ​​ > Subform. > ​ Have you had a look at OBJECT GET SUBFORM ( {* ;} object ; tablePtr

Re: FORM GET OBJECTS and getting info about Subforms

2018-07-02 Thread Patrick Emanuel via 4D_Tech
Hi Bob, in QS_Toolbox, you have a module that give you information about form objects, included subform. Have a look on the method FORMS_GetObjectDetails, you will find what you are looking for. Patrick - Patrick EMANUEL

Re: FORM GET OBJECTS and getting info about Subforms

2018-07-02 Thread Matt Wennerlund via 4D_Tech
It seems that Object Get Subform would give you what you want. It looks like you pass the object name or the variable name and it can return the table pointer and detail and list subform names. I have not used it personally, however. Matt Wennerlund Bob Miller via 4D_Tech wrote: Hi

FORM GET OBJECTS and getting info about Subforms

2018-07-02 Thread Bob Miller via 4D_Tech
Hi Everyone, I'm taking inventory of a form using FORM GET OBJECTS and I come upon an object that is "Object Type Subform". I can get the object name of subform from the point of view of the current form, but what I want is the name of the form and the table to which it belongs so I can in

Re: v13 - Text entry area, Returns, and Filters

2018-07-02 Thread Chip Scheide via 4D_Tech
Thanks Jeremy, that is the general pattern I am using. it seems that as long as I apply a filter the return character will not be accepted, as entry into the field. Chip On Fri, 29 Jun 2018 19:32:45 -0400, Jeremy French wrote: > Hi Chip, > > Try defining the filter using the following pattern:

Re: STARTTLS - send secure email 4D v15.5

2018-07-02 Thread Bruno LEGAY via 4D_Tech
Hi, Generally (convention) smtp on port 25 is unencrypted. C_LONGINT($vl_error;$vl_ssl;$vl_port;$vl_protocol) $vl_port:=25 $vl_protocol:=2 //2 = SMTP or SMTP with STARTTLS $vl_error:=IT_SetPort ($vl_protocol;$vl_port) $vl_ssl:=0 // sessionParam Longint 0 or omitted = Do not use SSL but

Re: STARTTLS - send secure email 4D v15.5

2018-07-02 Thread jarosz via 4D_Tech
Hello Keisuke Thank you for your clarification. You imply that the only way to request a secure TLS connection is by using "0" and hope that the server requests a switch to SSL. How is it possible to tell that the email was sent securely? Is it possible to ensure that the email is ONLY sent if

Re: Command name but what about Keywords?

2018-07-02 Thread Patrick Emanuel via 4D_Tech
4D Tech mailing list wrote > Yes, I wondered about that. I'm not certain how well it work in the > METHOD SET CODE context. > > Ideally I would like something like the new syntax: > Count parameters:C259 > > or with a constant: > Carriage return:K15:38 I tried to keep method code lile you

Re: Command name but what about Keywords?

2018-07-02 Thread Wayne Stewart via 4D_Tech
> #4DCODE which is always English (If, End if) regardless of the method > language and easier to maintain? Yes, I wondered about that. I'm not certain how well it work in the METHOD SET CODE context. Ideally I would like something like the new syntax: Count parameters:C259 or with a constant:

Re: Command name but what about Keywords?

2018-07-02 Thread Keisuke Miyako via 4D_Tech
As Patrick pointed out, the idea is to test the current language (use something like "True", which to know to have different tokens) once you run METHOD SET CODE (well actually, you should run twice to tokenise forward-referenced project methods) then keywords such as "If" will automatically