Reputation: 22064
Does .NET already include something which I can use to prevent selection of a past date in a DateTimePicker.
Upvotes: 1
Views: 2365
Reputation: 20794
Try:
dateTimePicker.MinDate = DateTime.Today;
Upvotes: 2