I have a DateTimePicker control on a form specified like so:
dtpEntry.Format = DateTimePickerFormat.Custom;
dtpEntry.CustomFormat = "dd/MM/yyyy hh:mm:ss";
dtpEntry.ShowUpDown = true;
I would like the user to only be able to increment or decrement the time by 5 minute increments.
Any suggestions on how one would accomplish this?