[lazarus] Problem with the Calendar Component

2006-04-11 Thread Marco Meile
Hi List, Hi everyone :) I have a little problem with the Calendar Component of lazarus, and the DateTime Formats. on delphi i can count the days up with the following statement: calendar1.date := Calendar1.date +1; on Lazarus does this not work cause an AnsiString is not Compatible

Re: [lazarus] Problem with the Calendar Component

2006-04-11 Thread A.J. Venter
On Tuesday 11 April 2006 23:25, Marco Meile wrote: Hi List, Hi everyone :) I have a little problem with the Calendar Component of lazarus, and the DateTime Formats. on delphi i can count the days up with the following statement: calendar1.date := Calendar1.date +1; Calendar1.Date

Re: [lazarus] Problem with the Calendar Component

2006-04-11 Thread Marco Meile
A.J. Venter wrote: On Tuesday 11 April 2006 23:25, Marco Meile wrote: Hi List, Hi everyone :) I have a little problem with the Calendar Component of lazarus, and the DateTime Formats. on delphi i can count the days up with the following statement: calendar1.date := Calendar1.date +1

Re: [lazarus] Problem with the Calendar Component

2006-04-11 Thread Mattias Gaertner
On Tue, 11 Apr 2006 23:45:16 +0200 Marco Meile [EMAIL PROTECTED] wrote: A.J. Venter wrote: On Tuesday 11 April 2006 23:25, Marco Meile wrote: Hi List, Hi everyone :) I have a little problem with the Calendar Component of lazarus, and the DateTime Formats. on delphi i can

Re: [lazarus] Problem with the Calendar Component

2006-04-11 Thread Patrick Chevalley
Maybe this is more what you want:Calendar1.DateTime:=Calendar1.DateTime+1;