Date Time Picker Troubles (RESOLVED)
Okay, I have a program I'm writing for a friend. There is a form to add a new record to a file. At the bottom of this form are three date-time-pickers. These are generally the last things a user will change on this form. Next to each DTP is a label that shows a date after the date selected in the DTP. I want the label to update after the user picks a date on the accompanying DTP.
What event should I use to trigger that?
What I want, is that the label will update only after a date has been picked, so dtpDate.Valuedchanged is no good, because then the label updates with each click. dtpDate.Validating is no good either because you have to focus on something else to activate it, and as I said, the user is done clicking things by this point, so the last label never gets updated.
Any suggestions?