Okay so Conditional Formatting is not an option.
The approach that the Access Menu wizard takes is for one subroutine that is called by each of the controls. The controls then pass their own name to the sub in the Call
Eg. To set the BackColour to RED as soon as a control is changed:-
Private Sub textBox1_AfterUpdate()
Call FormatTextBox(textBox1)
End Sub
Private Sub textBox2_AfterUpdate()
Call FormatTextBox(textBox2)
End Sub
Private Sub textBox3_AfterUpdate()
Call FormatTextBox(textBox3)
End Sub
Private Sub FormatTextBox(CallingObject As Control)
CallingObject.Properties("BackColor"

= 255
EndSub
'ope-that-'elps.
G LS
accessaceNOJUNK@valleyalley.co.uk
Remove the NOJUNK to use.