I'm using Access 97 and I have a form with a button that increments a text field by one everytime it's pressed. The issue I am having is that when you click on it it stays hilighted and wont go back to it's normal colour.
Here's the code I am using:
Private Sub lblTrxType9_Click()
Me![TrxType9] = [TrxType9] + 1
Me![TrxType9].ForeColor = 0
End Sub
Have a good day.
Here's the code I am using:
Private Sub lblTrxType9_Click()
Me![TrxType9] = [TrxType9] + 1
Me![TrxType9].ForeColor = 0
End Sub
Have a good day.