views:

179

answers:

3

I need to put a calendar control in an option. It must fit in a very small place.

The control must show date number, and color by day if we have something schedule.

Must be able to navigate and select:

  • Days
  • Month
  • Years

Should integrate with database, or manual.

Simple, light, fast

+4  A: 

Try TMonthCalendar and/or TDateTimePicker, these are Delphi wrapper components over Windows common controls.

TOndrej
+1  A: 

You didn't say free and so I can recommend the TMS TPlanner components. They have data-aware and non-data-aware calendar and date-picker controls that can have different colours and shapes on different days according to what is scheduled for the day.

I have used these extensively to provide a diary facility in our software to great effect.

_J_
+1  A: 

You can try the JEDI library, there are several Date and Time related controls, and it's free with the sources.

http://jvcl.delphi-jedi.org/

Eder Gusatto