Re: [Lazarus] When will the lazarus archive been gzip'd again?

2017-02-15 Thread Landmesser John via Lazarus
I'll mail that at lazarus-ow...@lists.lazarus-ide.org Am 16.02.2017 um 08:26 schrieb Landmesser John via Lazarus: Hi, the gzip'd archive stops at May 2016. When will the Lazarus archives afterwards be gzip'd ? I use the very useful "Lazarus Mailinglist Reader" and that needs these gzip'd a

[Lazarus] When will the lazarus archive been gzip'd again?

2017-02-15 Thread Landmesser John via Lazarus
Hi, the gzip'd archive stops at May 2016. When will the Lazarus archives afterwards be gzip'd ? I use the very useful "Lazarus Mailinglist Reader" and that needs these gzip'd archives. Isn't that done automatic? Does the gzip'd stops due to an error? Quote: To see the collection of prior p

Re: [Lazarus] TaskDialog asking

2017-02-15 Thread Alexey via Lazarus
On 15.02.2017 11:41, Ondrej Pokorny via Lazarus wrote: use Timer in taskdialog: I dont see event OnTimer or smth (flag for timer exists!) To autoclose form, if e.g. app wants to show 8 seconds, and then do YES. e.g "Reboot OS now? Waiting 30 sec" -- Regards, Alex -- ___

Re: [Lazarus] allow/Deny user to show form

2017-02-15 Thread Fabio Luis Girardi via Lazarus
I don't know if the solution that I implemented last night is the best one. I did the following: //FIsEnabledBySecurity: the user can access the control? this variable is changed via another call, when user login or logout, checking the authorizations of the logged user. //FAllowUnauthorizedShowF

Re: [Lazarus] allow/Deny user to show form

2017-02-15 Thread Anthony Walter via Lazarus
What you probably should do is create a function to show a form of any class for you, and put that security check in that one place. Example: function ShowForm(FormClass: TFormClass; Modal: Boolean = False): Boolean; begin // your global function to check if a user can access a form class Res

Re: [Lazarus] TaskDialog asking

2017-02-15 Thread Ondrej Pokorny via Lazarus
On 14.02.2017 22:21, Alexey via Lazarus wrote: - use Timer in taskdialog: I dont see event OnTimer or smth (flag for timer exists!) What is it good for? I see that Delphi has it: http://docwiki.embarcadero.com/Libraries/XE7/en/Vcl.Dialogs.TCustomTaskDialog.OnTimer I didn't add this feature