In my Windows Form application, I need to provide the end user to enter in a datetime of the format (MMDDYYYY HHMMSS)
I am using the DateTimePicker Control, however in the HHMMSS part - it takes in the current time of the day, by default --
var ArrivalDate = dtpArrivalDate.Value;
I need the flexibility for the user to enter a date like 10-11-2015 08:10:23
Can anyone suggest if there is any windows control, which allows the user to select HHMMSS from the front end, along with the date? Or else how can we append the HHMMSS part of the datetime entered by the user?