hi, i was wondering if its possible to have two combo boxes searching information on the main form (NO subform).
i have one combo box that finds the student and the second one to find the subject the student is taking.
but once i find the student the second combo box doesn't work. why?
this is the code i used for each combo box
Private Sub cboFindStudent_ AfterUpdate()
DoCmd.ShowAllRe cords
DoCmd.FindRecor d Me!cboFindStude nt
Me!cboFindStude nt.Value = ""
End Sub
Thanks
i have one combo box that finds the student and the second one to find the subject the student is taking.
but once i find the student the second combo box doesn't work. why?
this is the code i used for each combo box
Private Sub cboFindStudent_ AfterUpdate()
DoCmd.ShowAllRe cords
DoCmd.FindRecor d Me!cboFindStude nt
Me!cboFindStude nt.Value = ""
End Sub
Thanks
Comment