T
talibm
Hello Access Nation,
I have a form that is used for interviewing prospective employees. It has a
checkbox pos_acpt. and a corresponding textbox reas_decl. If the pos_acpt
checkbox is checked the reas_decl textbox enabled is set to false. The code
that I used works fine except when I go to a new record. This is the code
that I have in form load and current and pos_acpt before update and
afterupdate.
If Me.Accpt_pos.Value = 0 Then
Me.Reason_declined.Enabled = True
Else
Me.Reason_declined.Enabled = False
End If
I can't figure out why it doesnt work for a new record. Any help is always
appreciated. thanks tm
I have a form that is used for interviewing prospective employees. It has a
checkbox pos_acpt. and a corresponding textbox reas_decl. If the pos_acpt
checkbox is checked the reas_decl textbox enabled is set to false. The code
that I used works fine except when I go to a new record. This is the code
that I have in form load and current and pos_acpt before update and
afterupdate.
If Me.Accpt_pos.Value = 0 Then
Me.Reason_declined.Enabled = True
Else
Me.Reason_declined.Enabled = False
End If
I can't figure out why it doesnt work for a new record. Any help is always
appreciated. thanks tm