i am trying to open a form and have certain tick boxes enabled or not depending on a value in a text box using this code
Private Sub Form_Open(Cancel As Integer)
If Forms![USA_form]![how_many].Value > 14 Then
Forms![USA_form]![Dirt_cheap_keyword].Enabled = False
Else
Forms![USA_form]![Dirt_cheap_keyword].Enabled = True
End If
End Sub
but it doesnt work am i over looking something or is this not possible
thanks for looking at this
grant
Private Sub Form_Open(Cancel As Integer)
If Forms![USA_form]![how_many].Value > 14 Then
Forms![USA_form]![Dirt_cheap_keyword].Enabled = False
Else
Forms![USA_form]![Dirt_cheap_keyword].Enabled = True
End If
End Sub
but it doesnt work am i over looking something or is this not possible
thanks for looking at this
grant