dUKE wrote:
> You can extend the DateTimePicker control, there is a sample in:
> http://www.codeproject.com/KB/select...imepicker.aspx
>
> Before extending you need to be aware of the following facts:
> DateTimePicker has a date range: 1 Jan 1753 - 31 Dec 9998
> System.DateTime type has date range: 1 Jan 0001 - 31 Dec 9999
> SQL Server DateTime type has date range: 1 Jan 1753 - 31 Dec 9999
>
Thank you very much for the link. I do have one more question.
If I extend the DateTimePicker to accept the dates I require, I
shouldn't need to worry about the limitations you listed above as long
as I'm handling all the actual processing of the dates with my own code,
correct? ... Or will the System.DateTime limitation still be a problem?
(SQL Server's not going to be in the picture for this project.)
Todd