show select in field?

Hello,

I’m populating a list in a listbox by adding text from a textfield and clicking a button.
If I type an error, how can i select a row and have it show up in the textfield where i added the line?

workflow:
type text in A
click B to save to list C

Need to solve:
Select from C and have it show again in A in order to edit and save again with B

I’m very new, thanks for easy reply

Start with:
In the C.Change Event:

If row > -1 And row < Me.ListCount Then A.Text = Me.Cell(row, IntegerOfTheWantedColumn) End If

Vielen Dank :wink: