H
Hubbymax
I have changed the forms so there is now just the main form and 1
subform. I still have the 3 fields in the main form that need to be
transfered the the subform as they are entered in the main form
( placed in the 3 fields on the subform when sub form is entered).
The
must then stay the same as new detail records are entered using the
sub form. The only time the 3 fields in the sub form should chasnge
is
when a new main record is created using the main form and those
fields
are changed. I have included the original post and the one answer I
got.
Main form fields
ReqFilledDate
StoresReqDate
Cust
Subform fields
ReqFilledDate
StoresReqDate
Cust
I tried the suggestion below with no results although the person did
not get back to me on if I was doing it correctly.
This was for when I had 2 sub forms.
subform. I still have the 3 fields in the main form that need to be
transfered the the subform as they are entered in the main form
( placed in the 3 fields on the subform when sub form is entered).
The
must then stay the same as new detail records are entered using the
sub form. The only time the 3 fields in the sub form should chasnge
is
when a new main record is created using the main form and those
fields
are changed. I have included the original post and the one answer I
got.
Main form fields
ReqFilledDate
StoresReqDate
Cust
Subform fields
ReqFilledDate
StoresReqDate
Cust
I tried the suggestion below with no results although the person did
not get back to me on if I was doing it correctly.
This was for when I had 2 sub forms.
You may use the Before Insert event of sub form 2:
Private Sub Form_BeforeInsert()
Me![field] = Me.Parent!subForm1Control.Form![field]
End Sub