Test - if Combo is or is not null

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi there I know that this topic has partially been covered before but I am
trying to disable button if a combo box is not filled in.
At the moment I am using this code, but it is not working -

If IsNull(Me!cmbprojectreference) Then
Me.cmdaddimage.Enabled = False

Else

Me.cmdaddimage.Enabled = True
End If

Please help!!!!!
 
Where is this code? What event?

You say it is not working, what do you mean? your field is always enabled?


Rick B
 
Back
Top