Re: ON ERR CALL: Comments & Seeking Comments

2017-05-14 Thread David Adams via 4D_Tech
> For generic/lazy error testing (especially for Web Server items), I’ve been > logging the On Err Calls: > > LOG EVENT(Into 4D debug message;Error method+" Error Number: > "+String(Error)+"; Line:"+String(Error line)) > > This is interesting as it shows in the Console.app on a Mac (in the >

Re: Missing Edit Menu

2017-05-14 Thread Keisuke Miyako via 4D_Tech
in general (regardless of version, that is), you need to call SET MENU BAR in new each process if want a menu bar to show up, you also need to have the "active menu bar" property for a form if you want the menu to respond during a dialog. the property is only selectable if you have associated a

Re: ON ERR CALL: Comments & Seeking Comments

2017-05-14 Thread Sannyasin Siddhanathaswami via 4D_Tech
Thanks for this! Very helpful! I’ve started to use it more and more nowadays. I’m really curious how errors in 4D process tags are handled (especially in v16). I’m having a tough time debugging these tags through the 4D Web Server in v15. More testing needed as I didn’t realize you could use

Missing Edit Menu

2017-05-14 Thread Jim Medlen via 4D_Tech
In 4D v13.6 when executing a method from a Menu Item the Menu Bar would have four menus: the Apple Menu, the 4D Menu, the Edit Menu and the Help Menu. In 4D v15.4 when executing a method from a Menu Item the Menu Bar has three menus: the Apple Menu, the 4D Menu, and the Help Menu. The Edit

RE: Schemes for record level access control

2017-05-14 Thread lists via 4D_Tech
Hi Kirk, I'll get back to my usual NUG posting -- Private  I think it depends on what you need to do, and how "general" it needs to be. I have a system that is accessed by multiple business entities, where most are limited to their own records, while one can "see" all records. In this case,

Re: Website development path

2017-05-14 Thread Herr Alexander Heintz via 4D_Tech
To a degree :-) we use Active 4D to gather data based on the requests coming from the browser. All data is packaged as JSON and sent back to the browser. This includes login / queries for products, etc. The whole interface is rendered in the browser using the tools offered by JQWidgets. There is

[v16] Macros v2 date format

2017-05-14 Thread Jörg Knebel via 4D_Tech
G’day guys, I’m using "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: How to detect EOL character in text file

2017-05-14 Thread Peter Mew via 4D_Tech
That should have read replace string of course if you change all the possible EOL characters to CR, then position will find all the CRs or have I missed something? pm On Sat, May 13, 2017 at 8:30 PM, James Crate via 4D_Tech < 4d_tech@lists.4d.com> wrote: > On May 13, 2017, at 8:53 AM, Peter Mew