Adding additional text (by using buttons etc) to TextBox

5

555466

So, the problem is as follows, I have a TextBox in a form and I am filling
information on TextBox, addition to that, I would like to have for examples
buttons on side, which would by clinking the button add text (not replace)
to existing text on TextBox.

Is there a ready function for this in Access ?
 
A

Allen Browne

Assuming your button needs to append the words "more text" to the end of
whatever text is in the control named "MyControl", the Click event procedure
for the command button would be:

Me.MyControl = Me.MyControl & " more text"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top