hi i have a datetime picker in user control form in C#. when i load the user control i want the datetime picker to disply no value in the datetime picker box.
the code is below.
dpEDate.Format = DateTimePickerFormat.Custom;
dpEDate.CustomFormat = " ";
and when the user control is loaded and when a user try to insert a value it dosen't allow to select the user value in the first attempt. but in the second attempt the user can select the value.
what is the solution to this?