Hi, I would like to have a control, exactly like NumericUpDown, but with two diffrences.
1) Value has to be nullable. Now when user clear the field, control would bring previous value instead of showing blank field.
2) Second.. I would like to have, but this is not so much important as first one. I would like to throw away Up Down button.
I had an idea to do sth with custom control inherieted from NumericUpDown, but I can't even access to Control collection. Like that:
protected override void UpdateEditText()
{
base.Controls[1].Text = "";
}
Could you pleas help me with NumericUpDown which allows nullable value (and then viewing empty field) ?
Thanks for your help, Best regards,