Re: trying to Build double clickable app

2019-04-17 Thread Pat Bensky via 4D_Tech
Chip, You should have two licences selected in the Licences tab: - 4D Developer Porofessional - 4D Unlimited Desktop PB On Wed, 17 Apr 2019 at 20:21, Chip Scheide via 4D_Tech <4d_tech@lists.4d.com> wrote: > yes I located the Volume desktop app. > > and Chcuck, > getting the license installed is

Re: How to connect to a 4d ODBC server across a network

2019-04-17 Thread Tom Benedict via 4D_Tech
>Is it possible to create a UserDSN or SystemDSN that can find the server >located across the network?? My experience is a few years old, but you should be able to do this. The documentation which comes with the 4D ODBC driver (here’s the link for 4D ODBC Driver v17: 4D ODBC

Re: Printing Structure Diagram (Somewhat O.T.).

2019-04-17 Thread Tom Dillon via 4D_Tech
Charles Miller via 4D_Tech wrote: >you need to find someone who needs a boat anchor I use my nubby box as a door stop. Very useful. -- -- Tom Dillon 375 S Main St #405 DataCraft

Re: trying to Build double clickable app

2019-04-17 Thread Chip Scheide via 4D_Tech
yes I located the Volume desktop app. and Chcuck, getting the license installed is the problem. Chip On Wed, 17 Apr 2019 15:18:30 -0400, Jeremy French wrote: > Hi Chip, > > As Chuck points out, did you specify the location of Unlimited Desktop? > > That is, > Choose DESIGN -> BUILD

Re: trying to Build double clickable app

2019-04-17 Thread Jeremy French via 4D_Tech
Hi Chip, As Chuck points out, did you specify the location of Unlimited Desktop? That is, Choose DESIGN -> BUILD APPLICATION. Select the “Application” tab. Check-mark “Build stand-alone application”. Click the ellipsis button (ie, “…”) and select 4D Volume Desktop. Click BUILD. - Jeremy > On

Re: trying to Build double clickable app

2019-04-17 Thread Charles Miller via 4D_Tech
The license needs to be added to but;d. I should have been more specific Regards Chuck Chuck Miller Voice: (617) 739-0306 Informed Solutions, Inc. Fax: (617) 232-1064

Re: trying to Build double clickable app

2019-04-17 Thread Chip Scheide via 4D_Tech
v13 and v15 installs: - developer (4D vX.app) - 4D volume Desktop - Server am I missing something? I am looking at v13.6 full install dmg and other then components and plugins that is everything. Chip On Wed, 17 Apr 2019 13:34:26 -0400, Chuck Miller via 4D_Tech wrote: > You have to install

RE: How to connect to a 4d ODBC server across a network

2019-04-17 Thread Stephen J. Orth via 4D_Tech
We have a similar situation, but it's simply because we don't want to have to install the ODBC on every Client. The way I get around this is to separate the SQL query into it's own method, and have it run on the Server. This way there is only 1 ODBC System DSN. The method packs the results

Re: Printing Structure Diagram (Somewhat O.T.).

2019-04-17 Thread Charles Miller via 4D_Tech
you need to find someone who needs a boat anchor On Wed, Apr 17, 2019 at 12:35 PM Jack Stewart via 4D_Tech <4d_tech@lists.4d.com> wrote: > > Your email reminds me that I have a whole lot of legacy, > Macintosh 4D applications software and accompanying manuals > complete with original 3-ring

Re: How to connect to a 4d ODBC server across a network

2019-04-17 Thread Chuck Miller via 4D_Tech
you have to create odbc connection on whatever machine you are running sql from Chuck Miller Voice: (617) 739-0306 Informed Solutions, Inc. Fax: (617) 232-1064

What is the Listbox command to "get" a formula data type?

2019-04-17 Thread David Ringsmuth via 4D_Tech
This is the command that sets the data type: LISTBOX INSERT COLUMN FORMULA ( {* ;} object ; colPosition ; colName ; formula ; dataType ; headerName ; headerVar {; footerName ; footerVar} )   I have not found the Listbox command to "get" a formula data type. Please help! David Ringsmuth

Re: New Gmail interface does not render carriage returns as Line breaks in 4D plain text Emails

2019-04-17 Thread jeff--- via 4D_Tech
It seems that all line breaks must be carriage return/line feed. Here’s what we did that seemed to fix this issue: $BodyText:=Replace string($BodyText;"\r\n";"\r";*) $BodyText:=Replace string($BodyText;"\n";"\r";*) $BodyText:=Replace string($BodyText;"\r";"\r\n";*) --

Re: New Gmail interface does not render carriage returns as Line breaks in 4D plain text Emails

2019-04-17 Thread snicklin via 4D_Tech
Hi Dave, I've seen this too, in v16 and v17. Did anything ever come of this? Steve -- Sent from: http://4d.1045681.n5.nabble.com/4D-Tech-f1376241.html ** 4D Internet Users Group (4D iNUG) Archive:

How to connect to a 4d ODBC server across a network

2019-04-17 Thread msherloc via 4D_Tech
I am accessing (via an SQL query) my 4D database across a network. The 4d ODBC database is situated on one server and the software I will be querying the database will be on another server. Is it possible to create a UserDSN or SystemDSN that can find the server located across the network?? Not

Re: Printing Structure Diagram (Somewhat O.T.).

2019-04-17 Thread Jack Stewart via 4D_Tech
Your email reminds me that I have a whole lot of legacy, Macintosh 4D applications software and accompanying manuals complete with original 3-ring binders which I would like to sell. I used to do a lot of 4D development but have gotten away from it in recent years. I stopped purchasing updates

Re: Checking If Methods Are Preemptive Ready

2019-04-17 Thread Dani Beaubien via 4D_Tech
I am pretty sure that the METHOD GET ATTRIBUTES command will also return that information. In my Code Analysis component, if you open the “Explorer” window there is the ability to filter the methods based on the preemptive capable attributes. Super useful and you can do it live. Dani

Snr 4D Developer

2019-04-17 Thread Ciuri Nolan via 4D_Tech
Hi Guys, We're hiring! Want to work in sunny Brisbane (Australia) with a great team building first class software with a great purpose? Then look no further. Please check out the job ad linked below. We're happy to discuss visa and relocation options.

Re: Fast way to highlight a listbox entity selection

2019-04-17 Thread Keith Culotta via 4D_Tech
Hi JPR, Fuzziness is a good description, but things stand in sharper relief today. I was more focused on the syntax than the mechanics and for no particular reason started out with collections. Converting the app to an entity selection approach is turning out to be much easier than expected,