Reputation: 21198
I want to use date time picker for my window application. I am using Min Date
Max Date
property in my code. But user interface for inputing date is very complex for the purpose of accounting where we need faster typing speed and no or very less use of mouse.
I want to modify a user interface for date time picker such that user need to type 24012010 for 24/01/2010.
What i need to do for this. Or is it their any dll or some other tool which can provide me all the functionalities of date time picker with this functionality
Upvotes: 1
Views: 1252
Reputation: 15621
Use a MaskedTextBox. There's a good example on that page which will make sure the user has only entered numbers for their date. You'll then have to make sure the numbers form a valid date (i.e. not 99/99/9999) with your own validation code.
Upvotes: 2
Reputation: 3239
You can use third party controls for such a thing - we have been using DevExpress controls for about 4 years and are pretty happy :-).
Upvotes: 0