G
Guest
I'm trying to create a command button that will copy information in 2 fields
simultaneously from a form to a subform. I found an example in another
database that looks like this:
Private Sub cmdEnter_Click()
[strDescr] = [Forms]![frmEqpt]![strType]
[intICN] = [Forms]![frmEqpt]![intPartNum]
End Sub
If I use this, I get an error "cannot find [frmEqpt]".
If there is a better way to do this, please help.
simultaneously from a form to a subform. I found an example in another
database that looks like this:
Private Sub cmdEnter_Click()
[strDescr] = [Forms]![frmEqpt]![strType]
[intICN] = [Forms]![frmEqpt]![intPartNum]
End Sub
If I use this, I get an error "cannot find [frmEqpt]".
If there is a better way to do this, please help.