Re: v13 on Sierra?

2016-09-21 Thread Tim Nevels
On Sep 21, 2016, at 6:06 PM, Douglas von Roeder wrote: > Parallels allows us to run OS X but there was a licensing issue with one > version of OS X - not sure which version (10.x.x) or if it was OS X vs OS X > Server. > > Did you see anything about that in your research? Hi Doug, Well I

Re: 4D v15 & Mac OS Sierra

2016-09-21 Thread James Crate
On Sep 21, 2016, at 5:44 PM, Tom Dillon wrote: > > 4D v15.2 & Mac OS Sierra > > Is anyone else using Sierra yet and are they experiencing spinning > psychedelic pizza of death delays in the form editor? > > Clicking on a form object takes about five seconds before

Re: Expunging Char (0)

2016-09-21 Thread Chip Scheide
Doug, if I am reading this correctly (http://kb.4d.com/resources/inug?msgid=GmailId14980bbd87790d18 ) - Keisuke is saying... SET TEXT TO PASTEBOARD($text) $text:=Get text from pasteboard apply to your text field(s) Also I found this on game (12 years ago - from Pat Bensky) Here is some code

Re: v13 on Sierra?

2016-09-21 Thread Tim Nevels
On Sep 21, 2016, at 4:44 PM, Chip Scheide wrote: > don't feel bad... > OS 10.6.8 and still have v2003 to support. > > As soon as I can get them to v12 (in testing now) off to 10.9 But I do feel bad and I’m missing out on some cool macOS features. Like taking calls for my iPhone on my Mac. I

Re: 4D v15 & Mac OS Sierra

2016-09-21 Thread Tom Dillon
One thing that helps: Close the Properties list. Not much help, but it might help when you just need to move things around. Tom Dillon wrote: >4D v15.2 & Mac OS Sierra > >Is anyone else using Sierra yet and are they experiencing spinning >psychedelic pizza of death delays in the form editor? >

4D v15 & Mac OS Sierra

2016-09-21 Thread Tom Dillon
4D v15.2 & Mac OS Sierra Is anyone else using Sierra yet and are they experiencing spinning psychedelic pizza of death delays in the form editor? Clicking on a form object takes about five seconds before it's selected. Ay ideas on what might help this or why I upgraded to Sierra so fast? --

Re: v12 - Which is faster?

2016-09-21 Thread Chuck Miller
Why would you want to load record across network Let’s say I have array with 100 elements. I query with array get 100 record do a distinct values get 100 elements voila you are done do a distinct value and get 99 records OH OH you have as problem you might also query index not sure of

Re: Expunging Char (0)

2016-09-21 Thread Chip Scheide
Doug, this might be more then you think... as I recall there are a number of non-printing characters in unicode char(0) through char(31) except Char(10), char(13) so it may not be a "simple" Query by formula([table];position(char(0);[table]field)>0) It may actually be a case of do any of the

Expunging Char (0)

2016-09-21 Thread Douglas von Roeder
I've hit a situation in a legacy application that has records with alpha and text fields that contain numerous non-printing characters. The non-printing characters are causing non-printing. How do I go about finding the records the have invalid characters and deleting the Char(0)? One approach

Re: v12 - Which is faster?

2016-09-21 Thread Peter Bozek
On Wed, Sep 21, 2016 at 10:44 PM, Chip Scheide <4d_o...@pghrepository.org> wrote: > Table has about 150k records > query with array is performed on table > a number of records are in selection, but always <100. > record data is in cache. > Client/Server > > It is necessary to step through the

Re: v12 - Which is faster?

2016-09-21 Thread Chuck Miller
I would modify as follows set query destination into a variable query table check variable You might also query with array distinct values. If records in selection count = query with array count and distinct values count also equals, you have only one record each Regards Chuck

RE: v12 - Which is faster?

2016-09-21 Thread Dennis, Neil
Try both ways with a timer... but my money is on Query table without the use set. Let us know. Neil -- Privacy Disclaimer: This message contains confidential information and is intended only for the named addressee. If you are not the named addressee you should not disseminate,

Re: v13 on Sierra?

2016-09-21 Thread Tim Nevels
On Sep 21, 2016, at 2:00 PM, Douglas von Roeder wrote: > I have a customer who wants to (re)start using their 4D app on the Mac. > After reading some of the comments here, we've decided to *not* release on > V13 and are using this as the opportunity to do the upgrade to V15.x/V16. > > The

Re: v13 on Sierra?

2016-09-21 Thread Jim Labos - infobase
Thanks to all that replied. I will recommend to not use Sierra. Jim Labos - infobase - Jim Labos - infobase -- View this message in context: http://4d.1045681.n5.nabble.com/v13-on-Sierra-tp5747493p5747498.html Sent from the 4D Tech mailing list archive at Nabble.com.

Re: v13 on Sierra?

2016-09-21 Thread Keith Culotta
Many years ago the Mac version of 4D had a bug that caused it to crash when the open windows were closed using option-key/closebox-click. I think of that each time I use the technique. Keith - CDI > On Sep 21, 2016, at 1:13 PM, Douglas von Roeder wrote: > > Customers

Re: v13 on Sierra?

2016-09-21 Thread Ed Glassgow
Hey all, I am running my engineering company on Version 13.6 (Windows server and mostly Windows clients, but with a couple of Mac clients, including myself). Unfortunately, 13.6 running on MacOS 12 Sierra is unpredictably unstable. It is frustrating because it is almost useable, but will

Re: v13 on Sierra?

2016-09-21 Thread Douglas von Roeder
Jim: I have a customer who wants to (re)start using their 4D app on the Mac. After reading some of the comments here, we've decided to *not* release on V13 and are using this as the opportunity to do the upgrade to V15.x/V16. The primary reason for this decision is that I read multiple reports

v13 on Sierra?

2016-09-21 Thread Jim Labos - infobase
I have a customer that is asking if v13 will work on Sierra. I admit I didn't look too hard yet but anyone know if it's at least OK (I have v13 on El Capitan and the only problem is in desgn mode it will quit on me randomly but seldom). Thanks Jim Labos - infobase - Jim Labos - infobase

Re: v13 - what is happening here, extra Quotation mark

2016-09-21 Thread Spencer Hinsdale
yes, I think this needs to be "\\" > On Sep 21, 2016, at 9:16 AM, Tai Bui wrote: > > Hi, > > Off the top of my head, is the \ character possibly acting as an escape > character? > > Best Regards, > -Tai B. >

v13 - what is happening here, extra Quotation mark

2016-09-21 Thread Chip Scheide
line of code: Replace string([System_Prefs]File_Storage_Location;"\";$Path_Seperator)" see quote at the end of the line? If I delete it I get an syntax error mark in the method editor hitting enter places the quote mark there?!?! Chip

Re: v13+ - Progress component

2016-09-21 Thread Chip Scheide
Thanks Doug! On Tue, 20 Sep 2016 14:40:10 -0700, Douglas von Roeder wrote: > Chip: > > I you're using the 4D component, call Progress QUIT (0) to close all. > > -- > Douglas von Roeder > 949-336-2902 > > On Tue, Sep 20, 2016 at 2:03 PM, Chip Scheide <4d_o...@pghrepository.org> > wrote: > >>