I have a textbox they displays a value but it only displays the first value it won't move in front of it. It deletes the old one and puts in the new one. Any help is apprecited
Printable View
I have a textbox they displays a value but it only displays the first value it won't move in front of it. It deletes the old one and puts in the new one. Any help is apprecited
Try this:
Code:Text1.text = Text1.text & "The new text"
Not really sure what you are asking...
Are you talking about appending a value to the current contents of a textbox???
Code:Text1.Text = Text1.Text & " Some new text"
yes now it works fine. Thanks for the speedy responce!