I am building a form in MS Access and I am trying to use buttons to populate a sequence of text into a text box. The idea is that each button will add onto the information to the string sequence. So far I have only been able to populate the text box with the info of a single button, which gets replaced when another button is clicked.
I used the following for each button:
Private Sub btnBP_Click()
txtSequence.SetFocus
txtSequence.Text = "BP"
How can I make subsequent button clicks add onto the information and not replace it?