P
Pattyt
Hello,
I have another question. I have the following code in the after_update event
of a check-box and it works fine. The problem is that if I click/unclick and
then click again it keeps adding one to PossiblePoints. PossiblePoints
depends on the selection of a combo box. Ex. If AIM is selected from the
combo box, the initial possible points should be 16, but if they check SelfQA
then it is worth 17 points, however AIM should not be worth anymore than 17.
How can I code this?
Here is the code I have now:
Private Sub SelfQA_AfterUpdate()
If Me![SelfQA] Then 'If the user checks the box
Me!PossiblePoints = Me!PossiblePoints + 1 'Adds one point
End If
End Sub
I appreciate any help. Thanks
I have another question. I have the following code in the after_update event
of a check-box and it works fine. The problem is that if I click/unclick and
then click again it keeps adding one to PossiblePoints. PossiblePoints
depends on the selection of a combo box. Ex. If AIM is selected from the
combo box, the initial possible points should be 16, but if they check SelfQA
then it is worth 17 points, however AIM should not be worth anymore than 17.
How can I code this?
Here is the code I have now:
Private Sub SelfQA_AfterUpdate()
If Me![SelfQA] Then 'If the user checks the box
Me!PossiblePoints = Me!PossiblePoints + 1 'Adds one point
End If
End Sub
I appreciate any help. Thanks