Technyc2003
IS-IT--Management
I have a database for our Human Resources Dept and one of the fields on the main form is wether or not an employee is terminated. What I did was use a blank area of the form and created a label with a character of X as the caption. So that when the data entry person clicks on the Terminated check box that big ol' X will appear on that employee's record. Here's what I've done so far and it's not working.
I created a code procedure of After Update on the check box.
If Me![Check92] = "True" Then
Me![Term].Visible = True
Else
Me![Term].Visible = False
End If
I have the X label Visible property set to NO. So I'm not sure what to do. Any help is appreciated. Also, is it possible to once click that Terminated check box, display the X character and have the cursor automatically go into the Date of Termination field?
Thanks.
I created a code procedure of After Update on the check box.
If Me![Check92] = "True" Then
Me![Term].Visible = True
Else
Me![Term].Visible = False
End If
I have the X label Visible property set to NO. So I'm not sure what to do. Any help is appreciated. Also, is it possible to once click that Terminated check box, display the X character and have the cursor automatically go into the Date of Termination field?
Thanks.