I must be missing something obvious, but how do I determine if the user selected am/pm in the DateTimePicker?
If I use dtPicker.SelectedDate.ToString it returns AM, even if I pick PM.
dtPicker.SelectedDate.SQLDateTime returns 11:00 when I pick PM. Shouldn’t it be 23:00?
I do not see any property on the DateTimePicker control for determining if AM or PM was picked.
I recommend better to implement the DateChanged event in the DateTimePicker instance itself, so you receive the DateTime object with the values selected from the user.