
Originally Posted by
DCV0204
That is correct. I am wanting the staff combo box to populate the Text19 text box.
This database is only being used to email the request form it does not contain any tables except the one that list the staff for the combo box.
I created a macro that runs when the name is selected to open the second form "File Request Form".
Does the text box have to be bound for this to work?
In the form "File Request Form", use the load event to get the name from the combo box in form "FileRequestedByForm"
Try this:
Code:
Private Sub Form_Load()
Me.Text19= Forms!FileRequestedByForm.Staff
End Sub