G
Guest
Ok, I have the below series of statements, but when I place the word Inbox in
the field "stresseng", it seems to not acknowledge it. The code is below, but
what I'm doing is I'm checking if stresseng has a value, and if it does, I
need to check if that value is inbox. If it is, then I need to keep the
"stresscheck" checkbox checked. If anything else is in the stresseng field, I
want to uncheck the checkbox. Finally, if there's nothing in the stresseng
field, I want to keep the stresscheck checked. Let me know if you notice any
thing off. BTW, the stresseng field is from a combo box.
If Not IsNull(Me.stresseng.Value) Then
If Me.stresseng.Value = "Inbox" Then
Me.StressCheck = True
Else
Me.StressCheck = False
End If
Else
Me.StressCheck = True
End If
the field "stresseng", it seems to not acknowledge it. The code is below, but
what I'm doing is I'm checking if stresseng has a value, and if it does, I
need to check if that value is inbox. If it is, then I need to keep the
"stresscheck" checkbox checked. If anything else is in the stresseng field, I
want to uncheck the checkbox. Finally, if there's nothing in the stresseng
field, I want to keep the stresscheck checked. Let me know if you notice any
thing off. BTW, the stresseng field is from a combo box.
If Not IsNull(Me.stresseng.Value) Then
If Me.stresseng.Value = "Inbox" Then
Me.StressCheck = True
Else
Me.StressCheck = False
End If
Else
Me.StressCheck = True
End If