Private Sub Combo1_Click()
Text1.Text = Combo1.Text
End Sub
or u can try this
Private Sub text1_gotfocus()
If Combo1.Text = "" Then
MsgBox "Please select a value from the list first."
Combo1.SetFocus
Exit Sub
Else
Text1.Text = Combo1.Text
End If
End Sub