User Entry like this
textbox1.text = 01/02/03/......
I want to display the values separately in 3 textbox like this
After "/" it should move to next row
txt1.text = 01
txt2.text = 02
txt3.text = 03
....
How to do this.
Need Vb.net code help
Option 1
If it’s always 3 text boxes, you could just write static code for each text box, like this:
Option 2
If you have a variable number of text boxes based on the slashes, you’ll have to create them at run time and add them to the parent control, like this: