G Guest Aug 23, 2005 #1 How do I create a command button to clear the contents of one or more combo boxes on my form? Any help appreciated
How do I create a command button to clear the contents of one or more combo boxes on my form? Any help appreciated
W Wayne Morgan Aug 23, 2005 #2 Assuming the combo boxes are unbound or, if bound, that there are no restrictions on Null values, the code would be Me.Combo1 = Null Me.Combo2 = Null Me.Combo3 = Null 'etc Adjust the names above to match the names of your combo boxes.
Assuming the combo boxes are unbound or, if bound, that there are no restrictions on Null values, the code would be Me.Combo1 = Null Me.Combo2 = Null Me.Combo3 = Null 'etc Adjust the names above to match the names of your combo boxes.
G Guest Aug 24, 2005 #3 Thank, that worked great Wayne Morgan said: Assuming the combo boxes are unbound or, if bound, that there are no restrictions on Null values, the code would be Me.Combo1 = Null Me.Combo2 = Null Me.Combo3 = Null 'etc Adjust the names above to match the names of your combo boxes. Click to expand...
Thank, that worked great Wayne Morgan said: Assuming the combo boxes are unbound or, if bound, that there are no restrictions on Null values, the code would be Me.Combo1 = Null Me.Combo2 = Null Me.Combo3 = Null 'etc Adjust the names above to match the names of your combo boxes. Click to expand...