Need help with LinkChildFields/LinkMasterfield

  • Thread starter Thread starter MaXXXiMaNiAc
  • Start date Start date
M

MaXXXiMaNiAc

Hey All,
I can't seem to get this to work. I've attached a copy of what im
trying to do in a DB.

What I want is for an employee to pick his name from a combo box in the
subform. I want the name to copy onto a field on the Main form so I can
write it into the Recieved Table.

I'm hoping someone can help me out with what I'm doing wrong..
Any help would be great.
http://www.zaiderman.com/db4.mdb

Thanks in advance!
 
I've looked at you DB and I don't understand why do you want to copy combo
value from subform to the field on the main form?Your subform holds only a
combo box with employees. Why don't you change your employee text to a combo
box that is going to list your employees on the main form?

If you still want to copy the value from combobox here is the code:

Private Sub Combo0_AfterUpdate()
Forms!frm_main!employee = Me!Combo0
End Sub

Armin_A
 
Back
Top