Is there a way to enter data at the end of the text in a textbox, rather than writing over it. And can you make the previous text non changeable?
To add something to the end<br>use this<br>Me!Text1 = Me!Text1 & "Add Some stuff here"<br><br>So they can't change it.<br>If you make the Textboxes "Locked" property "Yes" then they can't change any thing in it, Even if you add something to it in the code right above.<br>The code does add something to it when it's locked I just tested it.<br><br>OK<br> <p>DougP<br><a href=mailto: dposton@universal1.com> dposton@universal1.com</a><br><a href= > </a><br> Ask me how Bar-codes can help you be more productive.
to position the cursor at the end of existing text for manual entery this seems to work<br><br>place in on enter<br><br>Dim txtleng As Integer<br>txtleng = Len(Me.yourtextbox)<br>SelStart = (txtleng + 1)<br>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.