c# - Setting the cursor position in a NumericUpDown Control -


i have created user control tha inherits numericupdown control. possible set cursor position within control? validating text onkeyup, , formatting when meets criteria. have me.text = fomatted(me.text), sets cursor position 0, want set end of text area.

thanks

use

yournumericupdown.select(desiredposition,0) 

Comments

Popular posts from this blog

php - How to build a web site which gives a sub-domain dynamically to every registered user? -

c# - Add item to Generic List / Collection using reflection -