D
DaveB
I received this error message.
Run-time error '2465'Microsoft Access can't find the
field 'BOX_Name' referred to in your expression.
I have a form with 2 subforms (I placed the 2 subforms on
my primary form). I have a field called BOX_NAME on my 2
subforms. When I enter information on the 1st subform
BOX_NAME field, I it to automatically go into the 2nd
subform BOX_NAME field.
The code below is not working...TIA for your help.
(where exactly do I find the name of the subform that goes
in this code...is it is the name of the second subform
control?)
Private Sub BOX_NAME_AfterUpdate()
Me.Parent!CONTENTS_TABLE_subform.Form!BOX_NAME = Me!
BOX_NAME
End Sub
Run-time error '2465'Microsoft Access can't find the
field 'BOX_Name' referred to in your expression.
I have a form with 2 subforms (I placed the 2 subforms on
my primary form). I have a field called BOX_NAME on my 2
subforms. When I enter information on the 1st subform
BOX_NAME field, I it to automatically go into the 2nd
subform BOX_NAME field.
The code below is not working...TIA for your help.
(where exactly do I find the name of the subform that goes
in this code...is it is the name of the second subform
control?)
Private Sub BOX_NAME_AfterUpdate()
Me.Parent!CONTENTS_TABLE_subform.Form!BOX_NAME = Me!
BOX_NAME
End Sub