crosmill
Registered User.
- Local time
- Today, 08:24
- Joined
- Sep 20, 2001
- Messages
- 285
I'm new to this and I have this code.
Private Sub ejay_Mixing_Station_Change()
If ejay_Mixing_Station > 10 Then
Me![Label13].Visible = True
Else
Me![Label13].Visible = False
End If
End Sub
Which works and makes text apear if the quantity is over 10.
the problem is that i need the code to run when I'm scrolling throught the reords. At the moment it only runs when the quantity in the text box is changed. I've tried using the on change event and setting it to the ID, but that doesn't work either.
[This message has been edited by crosmill (edited 10-18-2001).]
Private Sub ejay_Mixing_Station_Change()
If ejay_Mixing_Station > 10 Then
Me![Label13].Visible = True
Else
Me![Label13].Visible = False
End If
End Sub
Which works and makes text apear if the quantity is over 10.
the problem is that i need the code to run when I'm scrolling throught the reords. At the moment it only runs when the quantity in the text box is changed. I've tried using the on change event and setting it to the ID, but that doesn't work either.
[This message has been edited by crosmill (edited 10-18-2001).]