Re: Entity Selection List Box - Selected Row Color

2020-02-20 Thread Jeff Grann via 4D_Tech
The subject of my post is incorrect.  Sorry!!

--
Jeff Grann
SuccessWare, Inc.

> On Feb 20, 2020, at 1:22 PM, jeff--- via 4D_Tech <4d_tech@lists.4d.com> wrote:
> 
> Just tried Miyako’s notarized Win32API plugin on Catalina, but I get the 
> "“Win32API.bundle” cannot be opened because the developer cannot be verified" 
> message.
> 
> There is no Issues tab on the github repository, so I posted this here in 
> hopes Miyako will see it.
> 
> --
> Jeff Grann
> SuccessWare, Inc.
> 
>> On Tue, Feb 18, 2020 at 7:40 PM Keisuke Miyako via 4D_Tech <
>> 4d_tech@lists.4d.com> wrote:
>> 
>> isn’t Win32API a Windows-only plugin? 
>> 
>> though it is a stub anyway, 
>> 
>> I forked and notarised it to suppress the Catalina warning. 
>> 
>> https://github.com/miyako/4D-Win32API/releases
>> 
>> can’t speak for the reported errors on Windows, I don’t use the plugin. 
>> 
>> 2020/01/12 21:08、Charles Miller via 4D_Tech <[hidden email]> email]>>のメール:
>> 
> **
> 4D Internet Users Group (4D iNUG)
> Archive:  http://lists.4d.com/archives.html
> Options: https://lists.4d.com/mailman/options/4d_tech
> Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
> **

**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Who’s the Gestapo?

2018-07-19 Thread Jeff Grann via 4D_Tech
StackOverflow is great for pure, direct technical questions, but it doesn’t 
allow for general discussions.

--
Jeff Grann
SuccessWare, Inc.

> On Jul 19, 2018, at 10:58 AM, Andy Mercer via 4D_Tech <4d_tech@lists.4d.com> 
> wrote:
> 
> We could also join the rest of the world and move to StackOverflow.
> 
> Andy Mercer

**
4D Internet Users Group (4D iNUG)
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Build with code signing

2018-06-13 Thread Jeff Grann via 4D_Tech
Cannon,

This helped a lot.  I figured out how to renew the certificate but was missing 
the xattr step.  Thanks!!

--
Jeff Grann
SuccessWare, Inc.

> On Jun 11, 2018, at 1:45 PM, Cannon Smith via 4D_Tech <4d_tech@lists.4d.com> 
> wrote:
> 
> Hi Jeff,
> 
> I can’t give you a step by step guide, especially including getting the 
> signing certificate. But here is a code snippet which I use for signing my 
> apps which works. The takeaways will be in the comments as well as the two 
> commands that are run using LEP.

**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Build with code signing

2018-06-11 Thread Jeff Grann via 4D_Tech
This is part of what I need but it is hopelessly out of date.

--
Jeff Grann
SuccessWare, Inc.

> On Jun 11, 2018, at 1:51 PM, Keith Culotta via 4D_Tech <4d_tech@lists.4d.com> 
> wrote:
> 
> Would this still be relevant: http://kb.4d.com/assetid=76697 ?
> 
> Keith - CDI
> 
>> On Jun 11, 2018, at 12:34 PM, Peter Bozek via 4D_Tech <4d_tech@lists.4d.com> 
>> wrote:
>> 
>>> Can someone please direct me to documentation on how to code sign apps for
>>> MacOS with 4D.  I need the entire process in a step-by-step guide from
>>> explaining how to obtain the code signing certificate from Apple through
>>> adding it to the 4D XML build files and building.

**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Build with code signing

2018-06-11 Thread Jeff Grann via 4D_Tech
Can someone please direct me to documentation on how to code sign apps for 
MacOS with 4D.  I need the entire process in a step-by-step guide from 
explaining how to obtain the code signing certificate from Apple through adding 
it to the 4D XML build files and building.

--
Jeff Grann
SuccessWare, Inc.

**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Field Validation in Listboxes

2018-03-20 Thread Jeff Grann via 4D_Tech
What is the best practice for validating data entry in listbox fields (cells)?

If the user enters an invalid value, I’d like to keep them in the field, but 
REJECT doesn’t seem to work in listbox cells.

--
Jeff Grann
SuccessWare, Inc.

**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Collections

2018-03-16 Thread Jeff Grann via 4D_Tech
Haven’t worked with them yet, but my understanding is that a collection is an 
ordered list of values of possibly varying types.  In 4D arrays, all of the 
values must be the same type.  In a 4D collection, you can use mixed types as 
the elements.

Example:

$MyCollection[0]:=“Hello”
$MyCollection[1]:=5
$MyCollection[2]:=$AnObject
$MyCollection[3]:=$AnArray
$MyCollection[4]:=True

--
Jeff Grann
SuccessWare, Inc.

> On Mar 15, 2018, at 10:43 PM, Keith Goebel via 4D_Tech <4d_tech@lists.4d.com> 
> wrote:
> 
> Hi all.
> 4D seem to be really fired up about the new Collection object available in 
> upcoming versions.
> I’ve read the examples given in the blurb, but I have yet to read anything 
> that would give me an idea as to why I would want to use a Collection instead 
> of an Object.
> It seems as though Collections are objects that don’t need a name parameter 
> to identify the content; but if I have to name a Collection, what’s the 
> difference between that and an Object item?
> 
> There must be a very good reason for them, and I am sure I’m missing the 
> point, but what is it?...
> Cheers, Keith

**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Getter for the menu bar associated with a form

2018-03-12 Thread Jeff Grann via 4D_Tech
Is there such an animal?

--
Jeff Grann
SuccessWare, Inc.

**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Find and Replace Component for 4D Write Pro

2018-03-07 Thread Jeff Grann via 4D_Tech
Pat Bensky found a bug with the "replace all" in certain circumstances.  I 
posted a fix to the same link:

http://www.successware.net/downloads/4d-components/FindAndReplace.zip 


Thanks Pat!

--
Jeff Grann
SuccessWare, Inc.

> On Mar 7, 2018, at 10:46 AM, Jeff Grann  wrote:
> 
> I had the need to add find and replace to my 4D Write Pro areas. So I created 
> a generic component. It easily shows and hides itself at the top of a Write 
> Pro area and can resize itself automatically. You can download it and a demo 
> at:
> 
> http://www.successware.net/downloads/4d-components/FindAndReplace.zip 
> 
> 
> It requires 4D v16R5. You are free to use and modify it in any way you wish. 
> See the accompanying MIT license.
> 
> Hope this saves someone else some time and effort. :-)
> 
> --
> Jeff Grann
> SuccessWare, Inc.
> 

**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Find and Replace Component for 4D Write Pro

2018-03-07 Thread Jeff Grann via 4D_Tech
I had the need to add find and replace to my 4D Write Pro areas. So I created a 
generic component. It easily shows and hides itself at the top of a Write Pro 
area and can resize itself automatically. You can download it and a demo at:

http://www.successware.net/downloads/4d-components/FindAndReplace.zip

It requires 4D v16R5. You are free to use and modify it in any way you wish. 
See the accompanying MIT license.

Hope this saves someone else some time and effort. :-)

--
Jeff Grann
SuccessWare, Inc.

**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: https://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: Anyone been using R5 for real work?

2018-01-19 Thread Jeff Grann via 4D_Tech
I have found R5 to be solid so far as well.

--
Jeff Grann
SuccessWare, Inc.

**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

Re: What Texting Services Are People Using?

2017-12-06 Thread Jeff Grann via 4D_Tech
Don’t know what you’re planned volume is, but have a look at 
https://www.twilio.com .

--
Jeff Grann
SuccessWare, Inc.

> On Dec 6, 2017, at 2:22 PM, Dave Nasralla via 4D_Tech <4d_tech@lists.4d.com> 
> wrote:
> 
> Hey All,
> 
> I'm looking at the option of adding texting to mobile phones to one of
> our systems. Anyone using a system/API they like? I've briefly looked
> at https://www.eztexting.com.
> 
> dave
> 
> -- 
> David Nasralla
> Clean Air Engineering

**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**

App Nap

2017-11-15 Thread Jeff Grann via 4D_Tech
I’ve been out of 4D development for the past couple of years, but I’ve tried to 
keep tabs on new developments. One thing I thought I saw at one point is that 
4D (v15/v16/Rx) now works better with Mac OS X’s App Nap. Now I can’t find 
anything about it. Was I dreaming?

--
Jeff Grann
SuccessWare, Inc.

**
4D Internet Users Group (4D iNUG)
FAQ:  http://lists.4d.com/faqnug.html
Archive:  http://lists.4d.com/archives.html
Options: http://lists.4d.com/mailman/options/4d_tech
Unsub:  mailto:4d_tech-unsubscr...@lists.4d.com
**