I have a windows form with a text box: txtMyText.
txtMyText.Text is Bound to a data source: long lMyLongValue.
On the form I would like the value to display as a six digit value with leading zeros. Example 000123.
How can this be accomplished?
|
I have a windows form with a text box: txtMyText. txtMyText.Text is Bound to a data source: long lMyLongValue. On the form I would like the value to display as a six digit value with leading zeros. Example 000123. How can this be accomplished? |
|||
|
|
|
I believe Binding.Format event, can be pretty suitable for your needs, if not, you can bind it not to for convert it into formatted string use pretty simple example:
Regards. |
|||
|
|
Yes, follow link How to: Pad a Number with Leading Zeros |
|||
|
|