Re: ORDA - NOT(IN)

2020-03-01 Thread Chip Scheide via 4D_Tech
maybe because the array [] is not empty when there is a an empty string in it. and the query, in the second case is looking for empty string values, or just string values > > NOT(IN []) >versus > NOT(IN [""]) Hell is other people Jean-Paul Sartre

Re: ORDA - NOT(IN)

2020-03-01 Thread Tom-Lists via 4D_Tech
That's an interesting find, but I don't see that as the case as the value of the variable (as seen in the debugger) remains the same with or without the NEW COLLECTION parenthesis. So my question still stands: Why is my query of NOT(IN []) versus NOT(IN [""]) producing

Re: Printing List Box v16R5 - never mind

2020-03-01 Thread JOHN BAUGHMAN via 4D_Tech
I forgot that I needed to set the x, y start positions otherwise it prints based on the position of the list box on the form, which would push it off the page. John > On Mar 1, 2020, at 2:37 PM, JOHN BAUGHMAN wrote: > > 4dI have done this many times before but for this particular listbox I

Printing List Box v16R5

2020-03-01 Thread JOHN BAUGHMAN via 4D_Tech
4dI have done this many times before but for this particular listbox I am getting a blank page using… PRINT SETTINGS If (ok=1) OPEN PRINTING JOB FORM LOAD("DistrictPromotions")

Re: ORDA - NOT(IN)

2020-03-01 Thread Jeremy French via 4D_Tech
Hi Tom. I believe this statement has a silent syntax error, which the compiler/syntax checker fails to flag: $vC_uuidsToIgnore:=New collection() Remove the parenthesis so you have: $vC_uuidsToIgnore:=New collection See: https://doc.4d.com/4Dv18/4D/18/New-collection.301-4505843.en.html

Re: Can't use Zint plugin since upgrading my Mac

2020-03-01 Thread Aparajita Fishman via 4D_Tech
> the latest Catalina tends to rejects v17 style plugins (manifest.json in > Contents), As long as there are no nested frameworks that are themselves signed, you can use codesign --deep and it works with manifest.json in Contents. - Aparajita

Re: An API for my 4D app

2020-03-01 Thread Tom-Lists via 4D_Tech
We provide API resources just by using the web extension and returning JSON to validated queries. For example a customer device might make a request like: https://online.myDomain.ca/4DACTION/API/API_GetAssets?key=8B99FB68=new=yes

ORDA - NOT(IN)

2020-03-01 Thread Tom-Lists via 4D_Tech
Hi All, I'm generally in love with ORDA, but: Now assuming that the field "entityUUID" is populated (no null values), How come I get different results with: $vC_uuidsToIgnore:=New collection() $deletes:=ds.SyncDeletes.query("NOT(entityUUID IN :1)";$vC_uuidsToIgnore) $deletes -->

Re: Can't use Zint plugin since upgrading my Mac

2020-03-01 Thread Pat Bensky via 4D_Tech
I'm using 4D v17r6, Mac OS 10.5.3. ZINT plugin version 3.2 Thanks PB On Sun, 1 Mar 2020 at 04:02, Keisuke Miyako via 4D_Tech < 4d_tech@lists.4d.com> wrote: > are you trying to use v18 plugin on v17? > > as I posted before, it's really important to specify the version and > platform. > >