Adding additional text (by using buttons etc) to TextBox

  • Thread starter Thread starter 555466
  • Start date Start date
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 ?
 
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"
 
Back
Top