I\'m building an application with C# code. How do I get only the date value from a DateTimePicker control?
DateTimePicker
You mean how to get date without the time component? Use DateTimePicker.Value.Date But you need to format the output to your needs.