Re: [Gambas-user] DateChooser1.Month = Month(Now()) = ERROR (Invalid date)

2014-02-01 Thread Benoît Minisini
Le 01/02/2014 14:40, Benoît Minisini a écrit : > Le 01/02/2014 14:12, abbat81 a écrit : >> I don't understand. It always worked good. >> But not today. >> >> DateChooser1.Month = Month(Now()) >> DateChooser1.Month = 2 >> >> Public Sub Button1_Click() >> DateChooser1.Month = 2 'Month(Now()) >> End >

Re: [Gambas-user] DateChooser1.Month = Month(Now()) = ERROR (Invalid date)

2014-02-01 Thread Benoît Minisini
Le 01/02/2014 14:12, abbat81 a écrit : > I don't understand. It always worked good. > But not today. > > DateChooser1.Month = Month(Now()) > DateChooser1.Month = 2 > > Public Sub Button1_Click() > DateChooser1.Month = 2 'Month(Now()) > End > > = error (Invalid date) (2 and more time to press) > > >

Re: [Gambas-user] DateChooser1.Month = Month(Now()) = ERROR (Invalid date)

2014-02-01 Thread Jussi Lahtinen
I don't know what happens here, but documentation suggest that DateChooser1.Month is read only (could be error in doc). http://gambasdoc.org/help/comp/gb.form/datechooser/month?v3 But the error message is strange. Jussi On Sat, Feb 1, 2014 at 3:12 PM, abbat81 wrote: > I don't understand. It a

[Gambas-user] DateChooser1.Month = Month(Now()) = ERROR (Invalid date)

2014-02-01 Thread abbat81
I don't understand. It always worked good. But not today. DateChooser1.Month = Month(Now()) DateChooser1.Month = 2 Public Sub Button1_Click() DateChooser1.Month = 2 'Month(Now()) End = error (Invalid date) (2 and more time to press) DateChooser1.Month = 3 =OK I tjink it's a bug -- View thi