Hi Nancy
I am not aware of any addins either to do this, but you *could* program it
up as follows if you are using a single form:
1. create a FieldColours table with a FK to the table that will be editted
as well as a field containing a numeric value for the backcolour (you might
want one for the forcolour as well) and for the userid
PK - Autonumber
UserId
TableFK
ControlName
ControlCurrBackColour
ControlCurrForeColour
2. On the oncurrent event, check the above table for the current PK, user
and relevent controls and set the back/fore colour as held in the table
3. If the user is in the field, and press (for eg) a function key, you can
trap this with the onKeyDown event, and then set the back colour based on
whatever your rules are and the current setting of the coluor of the field
(e.g - if current colour is blue, set next colour to red, if current colour
is red, set to white etc.)
4. Update your FieldColours table to hold the new field colour
This is aircode, but it should work