not sure if a combo box can contain a null value
I have two combo boxes I want to make sure the user fills in box one before going to box two here what I got so far:
Private Sub ResetTxtBoxes()
If cmbBox1 = Null Then
Me!cmbBox2.Enabled = False
Else
Me!cmbBox2.Enabled = True
End If
End Sub
this is not working
I have two combo boxes I want to make sure the user fills in box one before going to box two here what I got so far:
Private Sub ResetTxtBoxes()
If cmbBox1 = Null Then
Me!cmbBox2.Enabled = False
Else
Me!cmbBox2.Enabled = True
End If
End Sub
this is not working