Is there any way to autoselect text when you tab to the time picker control?
Usually for a textbox you would do this
textbox.SelectionStart = 0;
textbox.SelectionLength = textbox.Text.Length;
But the timepicker doesnt have a selected text property? This would enable users to tab to the control, type the tiem and then tab off.
Usually for a textbox you would do this
textbox.SelectionStart = 0;
textbox.SelectionLength = textbox.Text.Length;
But the timepicker doesnt have a selected text property? This would enable users to tab to the control, type the tiem and then tab off.