IMO
Now Known as ___
- Local time
- Today, 05:10
- Joined
- Sep 11, 2002
- Messages
- 723
Try this in the After Update event of the JobNo ComboBox...
IMO
Code:
Private Sub JobNo_AfterUpdate()
If Me.LookUpAlarms = 2 Then
Me.FirstLetterSent = True
End If
If Me.LookUpAlarms > 3 Then
Me.SecondLetterSent = True
End If
End Sub
IMO