create values from other subform

tubar

Registered User.
Local time
Today, 10:06
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
 
Hi tubar,

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

contractor
 
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

Back
Top Bottom