Hello
Is there a way other than usuaing the right and left method to source the individual characters in a textbox.
one of the method which appears in the drop down list when i type the textbox?
Printable View
Hello
Is there a way other than usuaing the right and left method to source the individual characters in a textbox.
one of the method which appears in the drop down list when i type the textbox?
??? source them? you mean split them up?
Like
Dim Ltrs() as string
myVar = "-12345"
Ltrs = Split(myVar,"")
after that:
Ltrs(0) = "-"
Ltrs(1) = "1"
etc..
what dropdown list?