Hi,
I have a button on a form that when the user clicks it, it copies the text from Case Text and Item Text (which are two separate text boxes) into one text box (ExptoWord). The user can add as many items as they want to the same Text Box (ExptoWord).
This is the code that I am using:
How can I Autonumber every item that the user adds to ExptoWord text box?
Thanks in advance!
I have a button on a form that when the user clicks it, it copies the text from Case Text and Item Text (which are two separate text boxes) into one text box (ExptoWord). The user can add as many items as they want to the same Text Box (ExptoWord).
This is the code that I am using:
Code:
Me.ExptoWord = Me.ExptoWord & vbCrLf & Me.CaseText & vbCrLf & Me.ItemText
How can I Autonumber every item that the user adds to ExptoWord text box?
Thanks in advance!