create values from other subform (1 Viewer)

tubar

Registered User.
Local time
Today, 10:18
Joined
Jul 13, 2006
Messages
190
im new so ill explain the best I know how. my parent form has two subforms. when the user double clicks a value on one subform it populates the first blank field in the other subform. I created a code for the double click on the subform
Code:
Forms!frmeventbuild!Form.frmBUILDsub.EMPLOYEE.Value = Me.FULL_NAME
any ideas
 

contractor

Having Fun With Access
Local time
Today, 08:18
Joined
Apr 12, 2012
Messages
47
Hi tubar,

Can you post a example db?
so i can help you out

contractor
 

DavidAtWork

Registered User.
Local time
Today, 16:18
Joined
Oct 25, 2011
Messages
699
if i understand you correctly, what you are trying to do is illogical, when you say
"Forms!frmeventbuild!Form.frmBUILDsub.EMPLOYEE.Value = "
this line above is the full object address of the field EMPLOYEE on your subform. It does not specify a record and the database is not into guessing.
I suspect you need to look at your design and rethink what you're trying to do

David
 

Users who are viewing this thread

Top Bottom