May 26, 2003 #1 Whittler Vendor May 26, 2003 2 AU Hi, I am trying to link two combo boxes so that when I make a selection from the first, it will change the choice available for the second. Thanks
Hi, I am trying to link two combo boxes so that when I make a selection from the first, it will change the choice available for the second. Thanks
May 26, 2003 #2 Di0genes IS-IT--Management Nov 28, 2002 23 DE Hello, set the recordsource of your second combobox to select .... from .... where ... = form_yourform.combo1.value set the Enter event of your second Combo to Private Sub combo2_Enter() Me.ActiveControl.Requery End Sub that should work .. Regards Daniel Upvote 0 Downvote
Hello, set the recordsource of your second combobox to select .... from .... where ... = form_yourform.combo1.value set the Enter event of your second Combo to Private Sub combo2_Enter() Me.ActiveControl.Requery End Sub that should work .. Regards Daniel
May 26, 2003 Thread starter #3 Whittler Vendor May 26, 2003 2 AU Thanks, I'll give it a go Upvote 0 Downvote