Re: Thanks, and don't worry!

2020-07-18 Thread Alberto Bachler via 4D_Tech
That’s all good news JPR… Except, peut être, for NBC the military grade protected area. Happy to know that your Labradors are save! Alberto > El 18-07-2020, a las 02:05, JPR via 4D_Tech <4d_tech@lists.4d.com> escribió: > > [JPR] > > Hi Guys, > > Just a short message to thank all of you

Re: Quick reports not printing to PDF and previewing on macOS with 4D 64-bit versions

2020-04-22 Thread Alberto Bachler via 4D_Tech
.com/4Dv17/4D/17.4/OPEN-PRINTING-JOB.301-4883314.en.html > > or, > > 2. activate "Legacy printing layer option" > > https://doc.4d.com/4Dv17/4D/17.4/SET-PRINT-OPTION.301-4883296.en.html > On Apr 21, 2020, at 22:11, Alberto Bachler via 4D_Tech > <4d_tech@list

Quick reports not printing to PDF and previewing on macOS with 4D 64-bit versions

2020-04-21 Thread Alberto Bachler via 4D_Tech
Hello, The following code works with v17R4 32-bit. On v17R4 64-bit and v18 it does nothing C_LONGINT($l_refArea) C_TEXT($t_path) // loading the report $t_path:=System folder(Desktop)+“test.pdf” QUERY([Alumnos];[Alumnos]Apellido_paterno=“a@”)

Re: Get System Info vs PLATFORM PROPERTIES

2019-07-18 Thread Alberto Bachler via 4D_Tech
You can use the 4D function *Is macOs* or *Is Windows* instead of the longint returned by PLATFORM PROPERTIES Alberto > El 14-07-2019, a las 19:19, JOHN BAUGHMAN via 4D_Tech <4d_tech@lists.4d.com> > escribió: > > So PLATFORM PROPERTIES has been deprecated in favor of Get System Info. Get

Re: Using the HELP Menu for my own purposes.

2019-04-29 Thread Alberto Bachler via 4D_Tech
> the Help menu is empty if you build the application. Are you sure Miyako? Since what version? We noticed that the Hep menu on builded applications was showing help items belonging to plugins (and components). My solution was, before the build start, execute a method that look for any .htm@

Re: v17 conundrum in design

2019-02-07 Thread Alberto Bachler via 4D_Tech
Chuck I experienced this behavior from time to time since v16r2 (and maybe even v15) I believe can happen when 2 or more instances of 4D are running at the same time Last time was yesterday (macOS) I restarted my Mac and everything came back to normality Cordialmente, Alberto > El

Re: Tracking Field Data Changes

2019-01-15 Thread Alberto Bachler via 4D_Tech
Me too, please... > El 15-01-2019, a las 12:48, Patrick Emanuel via 4D_Tech > <4d_tech@lists.4d.com> escribió: > > Hi Luc, > > I'm interested if it doesn't matter to you to provide it to me also. > My email is pat.emanuel67 (at) gmail.com > > Thanks > > Patrick > > > > - > Patrick

Re: Programmatic control of reject new connections

2018-05-24 Thread Alberto Bachler via 4D_Tech
Hi Charles, What I do is to set a semaphore on the server and clear it after the task is execute. On the On startup method for (if application type is 4D Remote) I test that semaphore. If the semaphore is set I notify the user and quit 4D. BTW, no user can connect to the server until On

Re: 4d v14 web area & High Sierra & pdf

2018-02-05 Thread Alberto Bachler via 4D_Tech
Claudio I didn’t found any satisfactory solution… - You can install a PDF Browser plugin (not free) - If the PDF is just one page long you can display it in the web area after converting it to a picture (READ PICTURE FILE) - Or open the file with Preview with OPEN URL Alberto. > El

Re: Intermittent 4D Server / System crashes

2018-01-31 Thread Alberto Bachler via 4D_Tech
Memory usage/leaks? Are you using a 32 or 64 bit server? > El 28-01-2018, a las 22:50, Mitchell Shiller via 4D_Tech > <4d_tech@lists.4d.com> escribió: > > Hi, > > 4D Server 16.2 > Mac OS 10.13.2 running on a MacMini (Late 2014) 8GB RAM > External RAID 0+1 Samsung SSD. Using SoftRaid XT > >

[Warning] Settings properties values on object field by object notation

2017-10-30 Thread Alberto Bachler via 4D_Tech
Hello, If the value of a property is modified using object notation directly over an object field the modified value is not stored on the record. This is reproducible in v16R4 and v16R5. READ WRITE([Table1]) GOTO RECORD([Table1];0) // [Table1]Object.value is False $b_value:=True