Ok, it's been a while since I messed with Access, but what I am trying to do is update a form to pull a record up, after a dropdown is changed. I have 3 fields on my form, Name, Supervisor, Skills. There is also a subform with detailed data. I changed the name box to a combo box and it seems the subform is updating. I need the other 2 boxes on the form to update as well. I tried the following code, but obviously I am way off! Any help would be great!
Dan
Code:
Private Sub sName_AfterUpdate()
Me!sSupervisor.Requery
Me!sSkill.Requery
End Sub
Dan