Control Code Placement

D

DaveB

I don't know where to put my subform names and field name
in the code below!!! PLEASE let me know if the code is
correct and where to place my controls in this code.
Thanks!!!

All I want is the BOX NAME information from my first
subform to go automatically into my second subform.

First subform is called: BOX TABLE subform
Second subform is called: CONTENTS TABLE subform
Field name is called: BOX NAME


Try this code;
Me.Parent!SecondSubformCONTROLName!BoxName = Me!BoxName

Try This code:

Me.Parent!SecondSubformCONTROLName.Form!BoxName = Me!
BoxName



********************************************************
put the code in the first subform, in BoxName's
AfterUpdate event, as

Me.Parent!SecondSubformCONTROLName!BoxName = Me!BoxName

make sure you use the subform CONTROL name, rather than
the name of the
subform. to get the right name, open the main form in
design view. click
once on the 2nd subform *in the main form*, to select it.
in the Properties
box, click the Other tab, and look at the Name property.

hth


message
news:[email protected]...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top