I have the following code in a module:
Private Sub Detail_Click()
If Termed.Value = True Then
TermLabel.Caption = “Terminated”
End If
End Sub
The problem is that it won’t display the Terminated sign unless you click on the page some where. I would like for it to Populate as soon as the form page loads. It also doesn’t clear out if the next record isn’t a terminated employee. I am not to familiar with VB so any help is truly appreciated.