[Gambas-user] how to set a specific day in datechooser component

2014-01-31 Thread PICCORO McKAY Lenz
There's some way to select specific date and limits choose to this day in the datechoose calendar component? i mean... limits the dais to choose to only future dais! Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com

Re: [Gambas-user] how to set a specific day in datechooser component

2014-01-31 Thread Tobias Boege
On Fri, 31 Jan 2014, PICCORO McKAY Lenz wrote: There's some way to select specific date and limits choose to this day in the datechoose calendar component? i mean... limits the dais to choose to only future dais! You have to do that yourself (let dtcDate be your DateChooser): Public Sub

Re: [Gambas-user] how to set a specific day in datechooser component

2014-01-31 Thread PICCORO McKAY Lenz
From: Tobias Boege tabo...@gmail.com You have to do that yourself (let dtcDate be your DateChooser): ¬_¬u Public Sub dtcDate_Change() dtcDate.Value = Max(Now(), dtcDate.Value) End Alas, the DateChooser does not support Stop Event in the Change event, so I always reset the dtcDate.Value

Re: [Gambas-user] how to set a specific day in datechooser component

2014-01-31 Thread Benoît Minisini
Le 31/01/2014 17:52, PICCORO McKAY Lenz a écrit : There's some way to select specific date and limits choose to this day in the datechoose calendar component? i mean... limits the dais to choose to only future dais! Lenz McKAY Gerardo (PICCORO) A 'MinDate' property could be a good idea...