Hi, any help on this will be much appreciated.
On Form1 I have a command button which opens another for which lists all employees, i want to be able to select the employees which will enter their name into Form1 I have the below on the click event of form2
Private Sub Form_Click()
Forms!FrmAttendeeList.Username = Me.Username
End Sub
This works fine but i need to be able to add multiple employees into the Fields of Form1 and the above code will only replace the 1st field. HELP please!
On Form1 I have a command button which opens another for which lists all employees, i want to be able to select the employees which will enter their name into Form1 I have the below on the click event of form2
Private Sub Form_Click()
Forms!FrmAttendeeList.Username = Me.Username
End Sub
This works fine but i need to be able to add multiple employees into the Fields of Form1 and the above code will only replace the 1st field. HELP please!