M
Martin
Question, I currently have a checkbox with a label set to
flash whenever the checkbox is checked, what I want is for
the label to stop flashing when I move on to the next
record. As of right now my label continously flashes on
all records once I click on the checkbox. Here is my
current code;
Private Sub chkboxCALLBACK_Click()
If chkboxCALLBACK = True Then
Me.Label56.Visible = False
Me.Label53.Visible = True
Else
If chkboxCALLBACK = False Then
Me.Label56.Visible = True
Me.Label53.Visible = False
End If
End If
End Sub
your help is appreciated
flash whenever the checkbox is checked, what I want is for
the label to stop flashing when I move on to the next
record. As of right now my label continously flashes on
all records once I click on the checkbox. Here is my
current code;
Private Sub chkboxCALLBACK_Click()
If chkboxCALLBACK = True Then
Me.Label56.Visible = False
Me.Label53.Visible = True
Else
If chkboxCALLBACK = False Then
Me.Label56.Visible = True
Me.Label53.Visible = False
End If
End If
End Sub
your help is appreciated