lazarus/components/datetimectrls
dsiders 42fd1bf230 Docs: DateTimeCtrls/dbdatetimepicker. Updates content in topics including:
* TDBDateTimePicker
* TDBDateTimePicker.ConfirmChanges
* TDBDateTimePicker.UndoChanges
* TDBDateTimePicker.DataField
* TDBDateTimePicker.DataSource
* TDBDateTimePicker.ReadOnly
2023-03-17 20:36:37 +01:00
..
design updated makefiles, fixed compile fpdebug with fpc 3.2.2 2022-11-13 13:23:46 +01:00
docs Docs: DateTimeCtrls/dbdatetimepicker. Updates content in topics including: 2023-03-17 20:36:37 +01:00
pictures Components: Add copyright notes to all folders to which Roland Hahn has contributed images. 2021-02-24 22:17:51 +00:00
calcontrolwrapper.pas LCL/DateTimePicker: Correct spelling and grammar in source code comments. Patch by Don Siders. Issue #40101. 2023-01-30 13:34:40 +01:00
ChangeLog.old DateTimeCtrls: Rename outdated ChangeLog.txt to ChangeLog.old 2017-06-11 15:32:59 +00:00
datetimectrls.lpk DateTimeCtrls: Modifies the .lpk file to include the path to the documentation directory. Enables CodeHelp in the IDE. Patch by Don Siders. Issue #40111. 2023-02-07 15:35:44 +01:00
datetimectrls.pas DateTimeCtrls: split code into run-time and design-time packages. 2016-05-23 07:40:27 +00:00
datetimepicker.pas LCL/DateTimePicker: Correct spelling and grammar in source code comments. Patch by Don Siders. Issue #40101. 2023-01-30 13:34:40 +01:00
dbdatetimepicker.pas DateTimeCtrls: Publish property Options for TDBDateTimePicker. It was not even public. Issue #40124, patch by Don Siders. 2023-02-19 09:39:40 +02:00
lclcalwrapper.pas DateTimePicker: add InMonthView function to TCalendarControlWrapper - adds layer of abstraction to using of calendar "view" 2021-01-04 11:57:45 +00:00
Makefile udpated makefiles 2022-05-29 19:34:19 +02:00
Makefile.compiled LazUtils/FreeType: Separate FreeType stuff into its own package 2020-07-14 18:09:17 +00:00
Makefile.fpc updated makefiles, fixed compile fpdebug with fpc 3.2.2 2022-11-13 13:23:46 +01:00
readme.txt DateTimePicker: correcting link in readme.txt 2017-06-11 14:49:27 +00:00

DateTimeCtrls Package for Lazarus
--------------------------------------
http://wiki.lazarus.freepascal.org/DateTimeCtrls_Package

About:
	The package contains two controls — TDateTimePicker and TDBDateTimePicker.

	Delphi's VCL has a control named TDateTimePicker, which I find very useful for editing dates. LCL, however, does not have this control. Instead, for editing dates LCL has a control named TDateEdit, but I prefer the VCL's TDateTimePicker. Therefore, I tried to create a cross-platform Lazarus control which would resemble VCL's TDateTimePicker as much as possible. The TDateTimePicker control does not use native Win control, but it descends from LCL's TCustomControl to be cross-platform.

	TDBDateTimePicker is a data-aware version of TDateTimePicker, with nice way of handling null database values.

Author: Zoran Vučenović

License: Modified LGPL, same as Lazarus component library.