DateTimePicker - keeping the dropdown open

  • Thread starter Thread starter Andy
  • Start date Start date
A

Andy

Hi,

I have a request from my users. They would like the calendar drop
down to remain open even after they click a date, because they would
like to 'count' six to 10 weeks into the future.

Is there a way to keep that dropdown open until the control loses
focus?

Thanks
andy
 
You may try following workaround in closing event of DateTimePicker:

dateTimePicker1.Select();
dateTimePicker1.SendKeys("%{DOWN}"}

This simply again opens the dateTimePicker control.
 
Back
Top