CalendarComponent02 is a class that extends the CalendarComponent class and has the following customization:

- resembles the look and feel of Microsoft Date Picker

In order to use this class in your programs you must add the calendarcomponent.jar and calendarcomponent02.jar files to your project classpath.

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

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