Re: Built app in v18 can't find data file

2022-04-05 Thread Spencer Hinsdale via 4D_Tech
oh maybe i didnt answer the question. if you want it to open your data file that you include with your app, you can do this with New Architecture set to Off and by using Build Keys to set the default data file. This does not allow you to distibute a new app and have it open an existing data

Re: Built app in v18 can't find data file

2022-04-05 Thread Spencer Hinsdale via 4D_Tech
yes, there are now two possibilities... 1) there is a new checkbox in Database Settings, Compatibility for New Architecture. If this is ON the app saves the path to the data file in an appropriate location (~/library/application support/myapp/ so some such; if you need to know try Get 4D

Re: Built app in v18 can't find data file

2022-04-05 Thread Spencer Hinsdale via 4D_Tech
You can put a Data File with the same name as the Structure into the Database folder inside the .app package... Right-click or control-click on Recordings.app and choose Show Package Contents Double-click Contents; double-click Database Paste a Data File and Rename it to Recordings.4DD On

Re: SuperReport printer choice not respected by Windows 10

2021-06-09 Thread Spencer Hinsdale via 4D_Tech
This is done with SR SetPrinter If you go to enode site, download, previous version you can find developer docs: https://www.e-node.net/ftp/SuperReportPro/3.4.1_Previous_Version/SuperReportPro_Developer_Manual.pdf On 6/9/21, 12:40 AM, "4D_Tech on behalf of Wayne Stewart via 4D_Tech"

Re: Password Management System for Web Access

2021-01-23 Thread Spencer Hinsdale via 4D_Tech
look to see if you accidentally have the database method that overrides this. you can tell by by clicking in exlorer whether it is nonexistant (good) or blank (problemaic). hope this makes sesnse > On Jan 23, 2021, at 8:23 AM, Philippe Willems via 4D_Tech > <4d_tech@lists.4d.com> wrote: > >

Re: Need Help! - Customer upgraded from Win 7 to Win 10 Pro. 4D v13.6 Built Server Won't Run

2021-01-19 Thread Spencer Hinsdale via 4D_Tech
Does this maybe mean the Structure is locked? Restart the computer to release any hold Windows has on it. Get Properties and change Permissions as needed. Set the preference inside 4D Server to Allow Read Only Structure... On 1/19/21, 7:21 AM, "4D_Tech on behalf of Ken Eyring via

Re: Trace Command in V18.3

2020-10-28 Thread Spencer Hinsdale via 4D_Tech
check your license > On Oct 28, 2020, at 10:20 AM, Dave Slayton via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > I just installed v18…the trace command doesn’t seem to be working…. > anyone else having this issue or know of a work around ? > TRACE > C_longint ($dave) > $dave:=12 >

Re: Old 4D Transporter (ResTransporter) or Equivalent

2020-07-04 Thread Spencer Hinsdale via 4D_Tech
Maybe you can do this with 4D? There is a asterisk param for blob to document, document to blob. You just read in the res fork and write out as non-res file with .rsr I would think. Also maybe a moot point. 17.4 which is current may be the last 32-bit able version. It is 64-bit by default

Re: How to build a standalone app for Windows using Mac

2020-06-28 Thread Spencer Hinsdale via 4D_Tech
you need to run Windows. one way is to buy Parallels online and have it install Windows 10 > On Jun 28, 2020, at 3:57 PM, James Knight via 4D_Tech <4d_tech@lists.4d.com> > wrote: > ** 4D Internet Users Group (4D iNUG) New

Re: New Notarization Issues

2020-04-28 Thread Spencer Hinsdale via 4D_Tech
Release notes for v17.4 indicate you can substitute PHP and Internet Commands from v18, or remove entirely: https://download.4d.com/Documents/Products_Documentation/LastVersions/Line_17/VIntl/PDF_Format/4D_v17_4_ReleaseNotes.pdf On 4/28/20, 4:33 AM, "4D_Tech on behalf of Jeremy Roussak via

Re: Administration window on Server

2020-04-19 Thread Spencer Hinsdale via 4D_Tech
There's a blog entry (somewhere, sorry) about customizing the admin window. I'm sure it tells how to open custom or default. On 4/19/20, 12:18 PM, "4D_Tech on behalf of Mitchell Shiller via 4D_Tech" <4d_tech-boun...@lists.4d.com on behalf of 4d_tech@lists.4d.com> wrote: Hi, In

Re: Drop User NOT working (after client disconnected using Force Quit)

2020-04-15 Thread Spencer Hinsdale via 4D_Tech
Dude, 17.4 is the bomb. The ultimate fix for our times is Sleep on SSL (ACI0096906). This means you can run remote, encrypted, and shut your laptop for lunch and when you open again 4D client is Instant ON! New Networking (ServerNet) works awesome. 64-bit Remote, Encrypted is FAST. 32-bit

Re: entitySelection.add and USE ENTITY SELECTION

2020-04-02 Thread Spencer Hinsdale via 4D_Tech
did you check database compatibility setting that dot notation is enabled > On Apr 2, 2020, at 6:14 PM, Matt Bollwitt via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Hello – > > I’m running into a condition where USE ENTITY SELECTION is not working with > an entity selection that is built

Re: Receive packet stop character

2020-03-25 Thread Spencer Hinsdale via 4D_Tech
Does the behavior change if you insert USE CHARACTER SET("iso-8859-1";1) before receive packet On 3/25/20, 8:01 PM, "4D_Tech on behalf of JOHN BAUGHMAN via 4D_Tech" <4d_tech-boun...@lists.4d.com on behalf of 4d_tech@lists.4d.com> wrote: > On Mar 25, 2020, at 3:54 PM, Jeffrey Kain via

Re: Display off server process window on client

2020-03-23 Thread Spencer Hinsdale via 4D_Tech
CHANGE CURRENT USER("Administrator";"Password") OPEN ADMINISTRATION WINDOW On 3/23/20, 6:47 PM, "4D_Tech on behalf of Chuck Miller via 4D_Tech" <4d_tech-boun...@lists.4d.com on behalf of 4d_tech@lists.4d.com> wrote: Hi all, I have looked and tired and can’t figure out how to do

Re: HMAC SHA256 in native 4D code?

2020-03-20 Thread Spencer Hinsdale via 4D_Tech
Looks like you pad the key, append the msg, then hash. Then pad the key again, append the previous hash, and hash again. https://stackoverflow.com/questions/11415055/how-to-use-hmac-sha256 From: Two Way Communications Date: Friday, March 20, 2020 at 9:37 AM To: Spencer Hinsdale Cc: 4D iNug

Re: HMAC SHA256 in native 4D code?

2020-03-20 Thread Spencer Hinsdale via 4D_Tech
Does this help? https://doc.4d.com/4Dv17/4D/17.4/Generate-digest.301-4882385.en.html On 3/20/20, 9:15 AM, "4D_Tech on behalf of Rudy Mortier via 4D_Tech" <4d_tech-boun...@lists.4d.com on behalf of 4d_tech@lists.4d.com> wrote: Hi Bruno, I was looking in nabble to find a solution

Re: Execute on client command - locking records

2020-03-11 Thread Spencer Hinsdale via 4D_Tech
any chance In Transaction? > On Mar 11, 2020, at 8:20 AM, Janet Jonas via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > I am running into an annoying bug with "Execute on client" functions. Even > though I have put UNLOAD RECORD and READ ONLY commands into the methods that > are executed

Re: v15 how do I feed a SQL query result to a listbox?

2019-11-07 Thread Spencer Hinsdale via 4D_Tech
See the bottom of this page: https://doc.4d.com/4Dv16/4D/16.6/Managing-List-Box-Objects.300-4445342.en.html On 11/7/19, 3:11 PM, "4D_Tech on behalf of Chip Scheide via 4D_Tech" <4d_tech-boun...@lists.4d.com on behalf of 4d_tech@lists.4d.com> wrote: I believe that this is possible. I

Re: SSL Certificate parsing in 4D

2019-10-21 Thread Spencer Hinsdale via 4D_Tech
openssl? On 10/21/19, 2:04 PM, "4D_Tech on behalf of Eric Naujock via 4D_Tech" <4d_tech-boun...@lists.4d.com on behalf of 4d_tech@lists.4d.com> wrote: Is there a plugin or tool out there that can parse and breakdown a X509 style certificate into its components to be able to display the

Re: SSL Certificate parsing in 4D

2019-10-21 Thread Spencer Hinsdale via 4D_Tech
openssl? On 10/21/19, 2:04 PM, "4D_Tech on behalf of Eric Naujock via 4D_Tech" <4d_tech-boun...@lists.4d.com on behalf of 4d_tech@lists.4d.com> wrote: Is there a plugin or tool out there that can parse and breakdown a X509 style certificate into its components to be able to display the

Re: stack error - again

2019-10-11 Thread Spencer Hinsdale via 4D_Tech
I do this the opposite way--delete until it ain't broke. Make a copy and delete half. If it's still broke make a new copy and delete the other half. If that works, make a new copy and delete half of the known-broke half. Repeat ten times for 1 in 1024 granularity. On 10/11/19, 1:29 PM,

Re: selecting pixels

2019-10-10 Thread Spencer Hinsdale via 4D_Tech
-> On Event Call `lmk if you need more suggestions On 10/10/19, 4:12 AM, "4D_Tech on behalf of Peter Mew via 4D_Tech" <4d_tech-boun...@lists.4d.com on behalf of 4d_tech@lists.4d.com> wrote: A pointer to which commands to read up on would be good enough (I hope)

Re: Apple Events Manager Process?

2019-09-13 Thread Spencer Hinsdale via 4D_Tech
Hi Tom, I don't know how 4D figures here, but Apple Events appear to be product announcements which have adopted a QVC or Home Shopping Network format which entails a "personality" modelling a new product offering and then telling us the price, which always ends in 9-9. The Apple Events

Re: InnoSetup installer + Windows 7

2019-08-10 Thread Spencer Hinsdale via 4D_Tech
Hi Pat, This sounds like Virtual Store... Click Start, type "hidden" and show hidden files then go to C:\ Users\ Pat\ AppData\ Local\ VirtualStore\ Look for the install path of your app, like: Program Files(x86)\ CatBase\ There you may find folders like Database, which contains 93, because it

Re: Overlapping Objects in Data Segment #65

2019-08-09 Thread Spencer Hinsdale via 4D_Tech
can you drop indexes for the conversion? Spencer > On Aug 8, 2019, at 8:15 PM, Jeffrey Kain via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > It seemed to be a problem with the address table. I had to end task while > indexing during an R5 upgrade of one of our mirrors due to the cache memory

Re: Overlapping Objects in Data Segment #65

2019-08-08 Thread Spencer Hinsdale via 4D_Tech
no but i feel like _you_ posted a while back that is the indy index of structure ;) https://kb.4d.com/assetid=76692 Spencer > On Aug 8, 2019, at 4:58 PM, Jeffrey Kain via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > I ran a verify of our data file, and records were fine, indexes were fine,

Re: 4D eMail Editor - full HTML support

2019-07-24 Thread Spencer Hinsdale via 4D_Tech
Have you looked at 4D PDF Printer? http://node.de/indexplug.htm We use it to automate printing from 4D to PDF and then emailing using Outlook. However, it also has PRO features for reading from Outlook into 4D. Looking at the Demo, when I click on Outlook Email Parsing Client it lists

Re: 4D Mobile App

2019-07-20 Thread Spencer Hinsdale via 4D_Tech
Hi Dave, I would assume you need a License for Developer and to be running Interpreted... Go to Help menu, Licenses to see if you have "Developer". If you just switched to R, you may need to re-enter. Restart 4D, go to Open, select your Structure, and in bottom left of Finder window click

Re: Making sense of a crash report

2019-01-18 Thread Spencer Hinsdale via 4D_Tech
I don't know, but it seems weird the app appears to be in a system folder... Shouldn't this say, Path: /Applications/Catbase8.app? hth On 1/18/19, 5:23 AM, "4D_Tech on behalf of Pat Bensky via 4D_Tech" <4d_tech-boun...@lists.4d.com on behalf of 4d_tech@lists.4d.com> wrote: Path:

Re: AWS Experts - Need a little help

2019-01-14 Thread Spencer Hinsdale via 4D_Tech
did you edit Security Groups to add 4D ports 19812 to 19814? > On Jan 14, 2019, at 2:15 PM, Randy Engle via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Spencer, thanks for the tip. > > Yes, I'm using the public IP address > (Same address that I use to connect via RDC) > > No workie! > > ;-(

Re: AWS Experts - Need a little help

2019-01-14 Thread Spencer Hinsdale via 4D_Tech
Check that you are using the public ip displayed on the desktop not on server admin window... On 1/14/19, 1:01 PM, "4D_Tech on behalf of Randy Engle via 4D_Tech" <4d_tech-boun...@lists.4d.com on behalf of 4d_tech@lists.4d.com> wrote: I'm testing an app on AWS (LightSail Account)

Re: MSC: why "Checking list of deleted records ..." persists?

2019-01-12 Thread Spencer Hinsdale via 4D_Tech
Hi Kirk, Isn’t there an option for Compact to drop Address Tables? This invalidates any Log Files but gives table(s) a clean start. There is a function like Table Fragmentation which returns ratio of remaining record to total address table. Sorry not at computer... Spencer > On Jan 12,

Re: sending mail through Office365 using SMTP

2018-11-20 Thread Spencer Hinsdale via 4D_Tech
in the docs for Send there is an Exchange example that set Port 587. Spencer > On Nov 20, 2018, at 2:58 PM, Chris Belanger via 4D_Tech > <4d_tech@lists.4d.com> wrote: > > Hi, > > I have a client that has switched its email provider to use Office365. > My app sends emails using SMTP_Send( )

Re: Help->v11 to v17 Upgrade or New?

2018-10-18 Thread Spencer Hinsdale via 4D_Tech
plaining > about that. > > Thanks, > > Robert > >> On Oct 17, 2018, at 3:11 PM, Spencer Hinsdale via 4D_Tech >> <4d_tech@lists.4d.com> wrote: >> >> 4D automatically converts Subtables. This should not be a problem. > > **

Re: Help->v11 to v17 Upgrade or New?

2018-10-17 Thread Spencer Hinsdale via 4D_Tech
4D automatically converts Subtables. This should not be a problem. > On Oct 17, 2018, at 12:45 PM, Robert ListMail via 4D_Tech > <4d_tech@lists.4d.com> wrote: > > I have an old v11 database running on Windows that’s not particularly > well-designed and where there are more than a few

Re: Isolating the Cause of a Server Crash

2018-08-31 Thread Spencer Hinsdale via 4D_Tech
reboot the computer. it has been running for 40 days? > On Aug 31, 2018, at 1:54 PM, Dave Nasralla via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > One of our systems is crashing about every 3 days ** 4D Internet Users Group (4D

Re: pdfCreator problem

2018-08-29 Thread Spencer Hinsdale via 4D_Tech
+1 > On Aug 29, 2018, at 8:19 AM, Randy Engle via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Keith, > > Two thumbs up for Armin's plugin. > Yes, there is a cost, but eliminates a lot of headaches > > Randy Engle, Director > XC2 Software LLC – XC2LIVE! > > Keith wrote >> Hi all. >> We have

Re: ORDA - updating data in listboxes

2018-08-12 Thread Spencer Hinsdale via 4D_Tech
is this relevant? http://kb.4d.com/resources/inug?msgid=GmailId164f73d107b663e7 > On Aug 12, 2018, at 11:55 AM, Kirk Brooks via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > The thing that's not working is the Name column of the

Re: Orphaned blobs and SSD drives

2018-07-29 Thread Spencer Hinsdale via 4D_Tech
John, This might be a man in the middle of a weekend attack. I'm pretty sure the real Jeff Kain would tell you to run Repair, TWICE, to fix Orphaned BLOBs. > On Jul 29, 2018, at 3:32 PM, Jeffrey Kain via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > To fix a table with orphaned blobs, export

Re: POW Function

2018-07-24 Thread Spencer Hinsdale via 4D_Tech
difference btwn log and natural log. try LOG10 > On Jul 24, 2018, at 9:32 AM, Cannon Smith via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > > But I’m getting an exponent of 7 instead of 3. Any ideas what I’m doing wrong? >

Re: POW Function

2018-07-24 Thread Spencer Hinsdale via 4D_Tech
is it caret? 7^3 > On Jul 24, 2018, at 9:15 AM, Cannon Smith via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > I’m looking for an equivalent function in 4D as the pow function in other > languages. For example: > > >

Re: Backup Settings window

2018-06-01 Thread Spencer Hinsdale via 4D_Tech
seems like a Resource error. assuming you are on macOS, maybe a fix is to Build using 32-bit Volume Desktop -spencer > On Jun 1, 2018, at 1:50 AM, Pat Bensky via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > I've just upgraded a client's custom database to v16. > I compile it and build a

Re: Chromium Embedded Framework in built applications question

2018-05-19 Thread Spencer Hinsdale via 4D_Tech
Hi David, My guess was it was added to support Tabbed interface on Mac, Developer. v16.3 in December greatly reduced Built Client for us (506MB -> 282MB), and comes after R3 you are using. So my guess is current R6 would do the same for you. Spencer > On May 19, 2018, at 4:14 AM, David

Re: EC2 server on Amazon AWS

2018-05-11 Thread Spencer Hinsdale via 4D_Tech
Hi Rudy, 1) you need the public IP from your dashboard. this may not be the IP that 4d server appears to be listening to 2) you need allow access from your dashboard by going to Security Groups and adding your Ports (19812 - 19814) 3) you need to configure Windows Advance Firewall

Re: Error -19191 ?

2018-05-08 Thread Spencer Hinsdale via 4D_Tech
It is old client cannot update via new network layer... http://kb.4d.com/assetid=77427 > On May 8, 2018, at 9:53 AM, Bob Miller via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Hi Everyone, > > I have a 4D Client user (v15r5, Windows) who can't connect, with

Re: Label Editor problems v16 (doesn't recognize # of columns)

2018-03-09 Thread Spencer Hinsdale via 4D_Tech
maybe you are entering values in Euros and it is converting to Dollars (5:6)? Just kidding; I have no idea, except when I tested I used the up-down arrows not typing a value > On Mar 9, 2018, at 1:23 PM, Robert C. Faucett via 4D_Tech > <4d_tech@lists.4d.com> wrote: > > Thanks Spencer - My

Re: Label Editor problems v16 (doesn't recognize # of columns)

2018-03-09 Thread Spencer Hinsdale via 4D_Tech
t; http://www.washington.edu/burkemuseum/collections/ornithology/index.php > http://www.washington.edu/burkemuseum/collections/genetic/index.php > > > > > > > On 3/9/18, 12:12 PM, "4D_Tech on behalf of Spencer Hinsdale via 4D_Tech" > <4d_tech-boun...@lists.

Re: Label Editor problems v16 (doesn't recognize # of columns)

2018-03-09 Thread Spencer Hinsdale via 4D_Tech
Hi Rob, It seems to work for me, same setup, running 32-bit. Maybe it's different 64-bit? One oddity is clicking the up arrow to go from 2 to 3 Columns worked but did not re-scale in any way. I then had to change Label Width to see the column on page view. Maybe you are adding a column

Re: Blank Listbox

2018-02-23 Thread Spencer Hinsdale via 4D_Tech
my blank list boxes are always arrays, out of sync, which is easy to suss by backing off the fill instructions until it shows something. hint, one column is always in sync. however i don't think this problem makes headers blank. i would suggest you try leaving listbox in group4 and showing

Re: Problems installing built application

2018-02-05 Thread Spencer Hinsdale via 4D_Tech
oh, okay you can use Default Data File feature in XML Build Keys, store last file opened in your own text file, test the data file opened and if it is default look for text file and use Open Data File. there is some trick like calling in a new process maybe... > On Feb 5, 2018, at 3:36 PM,

Re: Problems installing built application

2018-02-05 Thread Spencer Hinsdale via 4D_Tech
v16, database prefs, New Architecture anything else? :) > On Feb 5, 2018, at 3:36 PM, macjimbo via 4D_Tech <4d_tech@lists.4d.com> wrote: > > that works until I install an upgrade. ** 4D Internet Users Group (4D iNUG) FAQ:

Re: Problems installing built application

2018-02-05 Thread Spencer Hinsdale via 4D_Tech
Well, if you go back to PackageMaker you can build an Installer that is signed with your Developer ID Installer And in Package, Contents you can go to Scripts, Postinstall and add a script with contents like: #!/bin/sh chmod -R 777 '/Applications/MyAppFolder' > On Feb 5, 2018, at 11:46 AM,

Re: Screen capture code snippet found on the NUG that I am not able to make work. plse help

2018-01-26 Thread Spencer Hinsdale via 4D_Tech
Hi Ernie, If you go to Terminal you can type or paste $command_t contents to test. You could also type, "man screencapture" to see the the manual which documents options like -R, which I do not see in High Sierra. My guess is that you need a single quote for path name since it contains space.

Re: Programmatically Manage Parent Tab an Multi-Subforms

2017-12-24 Thread Spencer Hinsdale via 4D_Tech
old school is draw two subfoms. one off screen. then swap as needed. with move-object. works a charm ;) > On Dec 24, 2017, at 8:37 AM, truegold via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Hi All, > > I have a parent form which has a subform container. Above the subform > container is a

Re: Quick Report Editor Preview on Windows

2017-12-11 Thread Spencer Hinsdale via 4D_Tech
I'd guess you need XPS Viewer installed > On Dec 11, 2017, at 12:16 PM, John Baughman via 4D_Tech > <4d_tech@lists.4d.com> wrote: > > What do you have to do on windows to use the preview button in the Quick > Report Editor in Windows? When I click it I get “No application is associated > with

Re: 4DLINK

2017-11-09 Thread Spencer Hinsdale via 4D_Tech
Hi Pavel, See if you can use LastDataPathLookup, ByAppPath: http://doc.4d.com/4Dv16/4D/16/LastDataPathLookup.300-3130241.en.html If you Build your application (app_sss.exe) using XML Keys, you: - use v16 - set Compatibility option for Use New Architecture--see bottom of this page:

Re: info.plist

2017-10-29 Thread Spencer Hinsdale via 4D_Tech
http://doc.4d.com/4Dv16/4D/16/4D-XML-Keys-BuildApplication.100-3130124.en.html > On Oct 29, 2017, at 1:31 AM, Jeremy Roussak via 4D_Tech > <4d_tech@lists.4d.com> wrote: > > I’m sure I’m missing something obvious (and I think I’ve managed to solve the > issue in the past), but… > > How do I

Re: QUERY into variable vs. Records in Table

2017-10-19 Thread Spencer Hinsdale via 4D_Tech
maybe i don't understand but what about: `trigger execute on client("@";"flagPoll") `flagPoll c_boolean(<>flagPoll) <>flagPoll:=true ... if(<>flagPoll) > $x:=Records in table([ServerMigrations]) <>flagPoll:=false else `skip 99,999 calls to server end if > On Oct 19, 2017,

Re: QUERY into variable vs. Records in Table

2017-10-19 Thread Spencer Hinsdale via 4D_Tech
trigger? > On Oct 19, 2017, at 10:28 AM, Jeffrey Kain via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > I feel like I'm missing an obvious solution. ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html

Re: How do you run MSC in a compiled/merged single user app?

2017-10-18 Thread Spencer Hinsdale via 4D_Tech
hold Option key while starting up to get the dialog where you can switch files, create new, or use msc > On Oct 18, 2017, at 7:54 PM, Robert McKeever via 4D_Tech > <4d_tech@lists.4d.com> wrote: > > 4D V15.4, single user. The client is on the east coast (4 time zones), I’m in > the west. > >

Re: Anyone using 4D Write Pro with a semblance of success?

2017-10-16 Thread Spencer Hinsdale via 4D_Tech
doesn’t r4 have tables, ie columns? > On Oct 16, 2017, at 3:04 PM, Pat Bensky via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > We are creating a document-building system using WritePro. It creates > data-based documents like catalogues, price lists, directories etc. - > something that our

Re: San Fransisco Font

2017-10-09 Thread Spencer Hinsdale via 4D_Tech
Here's how to get font and something about style sheet "automatic": http://kb.4d.com/resources/inug?msgid=GmailId15d3951d31795686 I don't know from "Default" but I do vaguely recall having boxes for 95, 2000, and XP. :) > On Oct

Re: Post Key command not working in converted 4Dv16 database

2017-10-09 Thread Spencer Hinsdale via 4D_Tech
You might try the key command to disable any event handler: http://doc.4d.com/4Dv16/4D/16.2/ON-EVENT-CALL.301-3432983.en.html > On Oct 9, 2017, at 6:41 AM, Ken Daniel via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Koen &

Re: Create multi array

2017-10-06 Thread Spencer Hinsdale via 4D_Tech
1) Use a Two Dimensional Array: http://doc.4d.com/4Dv16/4D/16.2/Two-dimensional-Arrays.300-3433911.en.html 2) Decide if your arrays are Rows or Columns. The Docs call them Rows. If you decide your arrays are Columns, then you must REMEMBER the Docs need "translation" anytime you refer to

Re: Resolving format

2017-10-02 Thread Spencer Hinsdale via 4D_Tech
Hi Jeremy, I don't know. I think it you use Filters and Formats to enter the format, i.e."£###,###" it is saved somewhere in your Structure and may be inaccessible. However you do have a Localization mechanism available, which works sort like this (stop me if you've heard this one before):

Re: Programmatic control of accept/reject new connections

2017-09-27 Thread Spencer Hinsdale via 4D_Tech
wouldn’t you just $0:=123 in On Server Open Connection DB Method Spencer > On Sep 27, 2017, at 7:38 AM, Jeffrey Kain via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Can this be done in code? Or is there a way to default it to rejecting > connections when you start the server? >

Re: QUERY BY ATTRIBUTE is slow af

2017-09-12 Thread Spencer Hinsdale via 4D_Tech
isn't there some trick to use a character code instead of at? and does the "beginning and end" pref possibly apply? > On Sep 12, 2017, at 8:22 AM, Jeffrey Kain via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Trying to figure out why our experience with QUERY BY ATTRIBUTE is so > different

Re: Edit in list / subform / 4D v16

2017-09-12 Thread Spencer Hinsdale via 4D_Tech
read write([contacts])? > On Sep 12, 2017, at 4:15 AM, Two Way Communications via 4D_Tech > <4d_tech@lists.4d.com> wrote: > > I thought this would be a no brainer but it’s starting to become a nuisance… > > I create a subform for a table [Contacts] inside the form for the table > [Customers]

Re: 4D server "pausing" every 15 minutes

2017-08-24 Thread Spencer Hinsdale via 4D_Tech
could this have anything to do with new volume shadow copy feature? > On Aug 24, 2017, at 8:05 AM, Jeffrey Kain via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > I just made a very interesting discovery and thought I'd share it with the > group -- it's timely given the recent blog post by 4D

Re: Heads Up about Write Pro Style Transformations

2017-08-01 Thread Spencer Hinsdale via 4D_Tech
i'm confused. he's getting the right plain text. isn't he saying that if there were an emphatic style that displayed . as ! then the plain text ought to change to ! too ? > On Aug 1, 2017, at 1:05 PM, Pat Bensky via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Keith, > If you used ST Get Text

Re: 4D Forums no longer accessible -- too many redirects

2017-07-27 Thread Spencer Hinsdale via 4D_Tech
I guess I should have mentioned that it works fine for me, just the sign-on is new and improved > On Jul 27, 2017, at 8:18 AM, Spencer Hinsdale wrote: > > > they have implemented Single Sign On. there was a banner that took me to > partners sign-on, then a button

Re: 4D Forums no longer accessible -- too many redirects

2017-07-27 Thread Spencer Hinsdale via 4D_Tech
they have implemented Single Sign On. there was a banner that took me to partners sign-on, then a button to "migrate forums logon" or some such. sorry to be vague. :) > On Jul 27, 2017, at 8:17 AM, Jeffrey Kain via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Is there a new way to access

Re: Serious 4D Internet commands issue in v15.4 with SMTP on Mac OS X

2017-07-26 Thread Spencer Hinsdale via 4D_Tech
Hi Paul, Look at forms being used for data entry to see if these text fields have the Multi-style checkbox checked in Properties. Here is a v14 picture: http://kb.4d.com/assetid=77175 And v15 feature:

Re: Packages-building an installer

2017-07-11 Thread Spencer Hinsdale via 4D_Tech
Assuming you are talking about Apple's PackageMaker, you can use a shell script to set read-write. For the Package there is a Scripts tab with an entry for Postinstall that will run after install. I think you are using this for AppleScript already. You can create a shell script by going to

Re: Error -19191

2017-06-27 Thread Spencer Hinsdale via 4D_Tech
this is cant use new network layer from old clients... http://kb.4d.com/assetid=77427 Spencer > On Jun 27, 2017, at 6:15 AM, Douglas Cryer via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Hi, > > We have a client trying to connect to a database from Austria

Re: Rotate Picture in 4D

2017-06-25 Thread Spencer Hinsdale via 4D_Tech
did you try 270? > On Jun 25, 2017, at 12:51 PM, Peter Mew via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Hi > I am trying to use Miyako's rotate picture component in v13. > I dont know if its not compatible but It wont run. > So Ive extracted the code and made it a subroutine

Re: Big Commerce v3 API

2017-06-11 Thread Spencer Hinsdale via 4D_Tech
can't you "manually" enter this detail, then get to see format, then put same? -spencer On Jun 11, 2017, at 12:33 AM, J. Douglas Cryer via 4D_Tech <4d_tech@lists.4d.com> wrote: >> An unlikely ask but: > >> Has anyone out there had any experience with integrating to Big Commerce >> v3API? I

Re: Need plugin that will set macOS window modified indicator

2017-06-08 Thread Spencer Hinsdale via 4D_Tech
compiled! thanks, Jeremy! > On Jun 8, 2017, at 6:37 AM, Jeremy Roussak via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Try using 1 and 0 instead of True and False for the third parameter. > > Jeremy > > > Jeremy Roussak > j...@mac.com > > >

Re: Need plugin that will set macOS window modified indicator

2017-06-08 Thread Spencer Hinsdale via 4D_Tech
Awesome! I tried this and am having a problem creating a generic usage for "current window"... I get compiler errors: the result of the function is not compatible with the expression this value cannot be passed as a parameter to this method or command from this line of code: WINDOW SET ENABLED

Re: printing listbox v 15.4hf2

2017-05-17 Thread Spencer Hinsdale via 4D_Tech
I think someone recently posted a link to 4d today: http://www.4dtoday.com there is a generic list box print routine on the home page however, since the host is in Australia it appears the site is actually 4D TOMORROW :) > On May 17, 2017, at 9:56 AM, Timothy Penner via 4D_Tech >

Re: Bar code

2017-05-08 Thread Spencer Hinsdale via 4D_Tech
Try PNG. I think scaling does not work with SVG because of crisp edges. -Spencer > On May 8, 2017, at 1:57 AM, stardata.info via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Hello, > > I try to use Picture:=Picture*,09 but not work because some part of bar code > are differents > > Thanks >

Re: Moving a window

2017-03-31 Thread Spencer Hinsdale via 4D_Tech
same works on windows except: - modifier keys are different (see docs?) - instead of one button, first hold right-mouse-click, then hold left-mouse-click TOO, then drag > On Mar 31, 2017, at 6:26 AM, Pat Bensky via 4D_Tech <4d_tech@lists.4d.com> > wrote: > > Should be easy enough ... right? >

Re: Copy or Drag from a listbox?

2017-03-06 Thread Spencer Hinsdale via 4D_Tech
http://kb.4d.com/assetid=49867 ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: http://lists.4d.com/archives.html Options:

Re: auto update of clients

2017-03-02 Thread Spencer Hinsdale via 4D_Tech
19191 is the new-protocol error. old clients can only update themselves if you use the old network layer option in compatibilty ** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: