Hello,
I'm attempting to create a form where the multiple combo boxes are cleared when I proceed to the next record. I have applied the below code and it works to clear one of the combo boxes but not any of the others. I have applied this to each combo box by going to Properties -> Event tab -> On Click -> [Event Procedures].
Any help is greatly appreciated!
I'm attempting to create a form where the multiple combo boxes are cleared when I proceed to the next record. I have applied the below code and it works to clear one of the combo boxes but not any of the others. I have applied this to each combo box by going to Properties -> Event tab -> On Click -> [Event Procedures].
Any help is greatly appreciated!
Code:
Private Sub Form_Current() With Me If .NewRecord Then .cboYourCombo = .cboYourCombo.DefaultValue End With End Sub
Comment