On my main form I have a text box control (Person1) to enter a person's name. I have it set to where when double clicked a second form (pop up) opens with a list box showing a list of persons names already entered. I have the double click of the list box as follows:
Forms!frmPropertyEntry!Person1= Me.lstPersons
DoCmd.Close acForm, Me.Name
After the selected name is double clicked it puts it in the text box control on the main form. It works fine. I now have placed a second text box control for a second person entry (Person2) and want to use the same function. What I want to do is use the same pop up form to enter data into several different controls and need help with the code? Any help is appreciated?