Certain date into DateTimePicker (Pascal)
How to add a certain and specific date into DateTimePicker in the Pascal/Lazarus ?
Certain date into DateTimePicker (Pascal)
How to add a certain and specific date into DateTimePicker in the Pascal/Lazarus ?
Delphi's TDateTimePicker
and FPC's TDateTimePicker
both have Date
and DateTime
properties, which you can set to a specific date, eg:
DateTimePicker1.Date := EncodeDate(1991, 1, 1);