Welcome to the Calendar Component v5.1 Professional demo.
Either used as a simple date picker or as a professional calendar component, Calendar Component v5.1 Professional has all the features needed in order to quickly integrate date selection in your application.

The Java code below shows how to quickly integrate the CalendarComponent class in your application:
<CODE>
CalendarComponent calendarComponent = new CalendarComponent();

JFrame frame = new JFrame("Calendar Test");
frame.getContentPane().add(calendarComponent);
frame.pack();
frame.setVisible(true);
</CODE>
