Re: Application User Level Access

2018-05-15 Thread Charlie-gm
I'll apologize in advance some of this is somewhat basic, but I want to be clear about my approach. One thing that I do in VFP is to first subclass all the base classes into it's own .vcx. So I get something like "mybutton" which was subclassed from button. Now, in pretty much all those

Re: Application User Level Access

2018-05-15 Thread Frank Cazabon
might be easier, but definitely not safer! Frank. Frank Cazabon On 15/05/2018 04:30 PM, Alan Bourke wrote: With access rights it may be easier to assume everyone has access to everything and then only store what they don't have access to. ___

Re: Fun with date calculations in VFP

2018-05-15 Thread Eric Selje
I've started a class for a C# like DateTime static class here: https://github.com/eselje/FoxTypes/blob/master/FT_DATETIME.md I may steal some of the ideas here to embellish it, but if you have time and want to contribute please clone this repo and submit a pull request when done. It's pretty

Re: Application User Level Access

2018-05-15 Thread Alan Bourke
With access rights it may be easier to assume everyone has access to everything and then only store what they don't have access to. -- Alan Bourke alanpbourke (at) fastmail (dot) fm On Tue, 15 May 2018, at 6:44 PM, Frank Cazabon wrote: > Another alternative: > > ensure each control and

Re: Application User Level Access

2018-05-15 Thread Frank Cazabon
Another alternative: ensure each control and form has a property that can be used to store a security ID set up a table of secured items that consists of the security ID and a description. set up a table of users. set up a table of security access which has the security id and the user