I can't figure this out:

VB Code:
  1. Private Sub cmdAddtoOut_Click()
  2. Dim strName As String
  3. strName = Me.cmbName
  4. Me.tblOutputsub.NAME = strName
  5. End Sub

It's suppose to take the value from the main form and display it is the subform feild when the command button is clicked.