Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set win forms datetime picker to have no default value?

I am implementing search functionality in WinForms and I search by date range. Thus there are dateForm and dateTo date pickers on the form. By default their values are date time now() and if user do not touch date time pickers at all he will not get any results. Because search will be performed between now() and now(), also if I put min and max values as default it would solve first problem but there would be another problem if user wants to search by date range, he would need to click many times to come from default 1700 (something) to now()

Any suggestions to solve this problem?

Thanks a lot.

like image 612
eomeroff Avatar asked Jan 28 '10 01:01

eomeroff


People also ask

What is the default value of DatePicker?

By default, the DatePicker value is null and the Calendar popup is hidden.

What is datetime picker?

The Windows Forms DateTimePicker control allows the user to select a single item from a list of dates or times. When used to represent a date, it appears in two parts: a drop-down list with a date represented in text, and a grid that appears when you click on the down-arrow next to the list.

What is date/time picker in C#?

The DateTimePicker control allows you to display and collect date and time from the user with a specified format. The DateTimePicker control has two parts, a label that displays the selected date and a popup calendar that allows users to select a new date.


2 Answers

You can't have a valueless datepicker with the out-of-the-box control. Why? It is backed by DateTime, which is non-nullable.

You can disable it with another control, or leave it disabled until the user clicks (bad UX for keyboard enthusiasts, like myself), or find or create (!) one that uses Nullable<DateTime>.

Edit:

In response to your comment, yes, you can do this; in fact, I've done it.

  • use fields or private properties to hold the 'from' and 'to' dates, instead of reading them from the dtp, and set their defaults to min and max
  • use a boolean flag to indicate when you are manipulating the dtp value in code, and in the dtp's ValueChanged event, set the flag's value to false
  • in the form load event, set the flag to true and dtp value to today's date
  • also in the ValueChanged event, set the from and to fields to the values of the dtps (you have to set both when either dtp changes, because the user will see the other one as set to today, but the search value will still be min or max).

The problems with this is that once the user has changed the date selection, she can't easily go back to "all dates." Furthermore, the user can't select "today only" without first changing one of the dates and then changing it back.

I think the best solution for you is to have a checkbox, "search by date range," which either enables the two dtps that are otherwise disabled, or displays the dtps that are otherwise hidden. Then you search from min to max unless the checkbox is checked, and when the checkbox is checked, you use the two dtp dates no matter what they are. Don't forget to deal with to and from being out of order, which can be done in several ways.

like image 82
Jay Avatar answered Sep 26 '22 02:09

Jay


Have a look here for a nullable datetimepicker on CodeProject, in fact there are a few here.

like image 39
t0mm13b Avatar answered Sep 25 '22 02:09

t0mm13b