Hello there!
I have a form with 4 comboboxes.The comboboxes look in specific tables so that the user has a drop down menu to choose from.
I've also created a button to clear the comboboxes, but this doesn't work !
I 've tried the followin:g On click ->Code builder ->
Private Sub Command1_Click()
Me![cmb1]=Null
End Sub
Private Sub Command1_Click()
cmb1.RowSource=""
End Sub
Private Sub Command1_Click()
cmb1.Value=""
End Sub
and nothing happens when I click it!
Can anyone advise me on this please?
I have a form with 4 comboboxes.The comboboxes look in specific tables so that the user has a drop down menu to choose from.
I've also created a button to clear the comboboxes, but this doesn't work !
I 've tried the followin:g On click ->Code builder ->
Private Sub Command1_Click()
Me![cmb1]=Null
End Sub
Private Sub Command1_Click()
cmb1.RowSource=""
End Sub
Private Sub Command1_Click()
cmb1.Value=""
End Sub
and nothing happens when I click it!
Can anyone advise me on this please?