D DBnub11 Registered User. Local time Today, 08:53 Joined Jan 5, 2011 Messages 26 Feb 11, 2011 #1 Hi I need to bind and unbind combo boxes in a form any ideas how to do that?
J JANR Registered User. Local time Today, 14:53 Joined Jan 21, 2009 Messages 1,623 Feb 11, 2011 #2 To unbind set the controlsource to ZLS Me.NameOfCombo.ControlSource = vbNullString To Bind: Me.NameOfCombo.ControlSource = "Customer" JR
To unbind set the controlsource to ZLS Me.NameOfCombo.ControlSource = vbNullString To Bind: Me.NameOfCombo.ControlSource = "Customer" JR
D DBnub11 Registered User. Local time Today, 08:53 Joined Jan 5, 2011 Messages 26 Feb 11, 2011 #3 Thanks a bunch I finally got my form working right now. The problem was I unbound everything to prevent acidental editing so when I filters the non filtered data was not hooked up to anything
Thanks a bunch I finally got my form working right now. The problem was I unbound everything to prevent acidental editing so when I filters the non filtered data was not hooked up to anything