			[  DatePickerBean: version 2.0  ]

Hello Friends,
Thank You very much for the overwhelming response to our Bean
(over 1800 download at CNet & ZDnet )

DatePickerBean 2.0 has Minor updates over the previous release.

1)
DatePicker is now extendable ie. you can inherit from this class and make it further useful.
One such eg. is making it a CellEditor of a JTable or JTree. I have given a demo (MyJTable.java)
along with this release to give you an understanding of such a flow.

Note: I tried to use it as a CellRenderer but I was not Successful (there is some threading problem). 
But I have showed an alternative to this in the above mentioned program.

2)
I have also removed a bug that came to my notice while I was writing the above program.

Try this:
	//current date should greater than 1 jan 1991
	DatePicker dp=new DatePicker();

	dp.setMinDate(1800,1,1);
	dp.setMaxDate(1990,12,31);
	dp.setDate(1977,4,21);//the bug was diagonsed in this routine

The BUG: 
Date is set to 21 May 1977 instead of 21 April 1977.
there is similar problem while setting dates for months like feb,sept,nov.
This bug cripes in if you set the MaxDate below the current date that is currently present in your datepicker object.(in this case take it to be 5 jan 1991 )

I have now fixed this bug.

If you do find any problems using this bean or just wish to say hi, Please feel free to contact me.

Thank You .
Pramod S. Jaiswal.
(pramodjaiswal@hotmail.com) 
