Is there a way to clear the value in a SpinEditor? I want to be able to press the delete key and clear the value from the textbox and also programmatically clear it. Something like what you showed me for a DateTimePicker:
Thank you,
Gary
dtpFilter1.NullableValue =
null
;
dtpFilter1.NullDate = System.Convert.ToDateTime(
"01/01/0001"
);
dtpFilter1.NullText =
""
;
//and
dtpFilter1.SetToNullValue();
Thank you,
Gary