So create another text box that will show the "lunch" or "break" description. Place code behind the After Update event of your time field...
Be sure to confirm how the time is being stored in your field so you get the syntax right on your Select Case statement. Also look up Select Case under help to get the syntax correct on comparing values in the field.
Sub txtTimeField after_update
dim txtTimeDescription as string
select case me.YourTimeField
Case Between "1200" and "100"
txtTimeDescription = "Lunch"
Case > 5:00
txtTimeDescription = "Overtime"
Case < 8:00
txtTimeDescription = "What are they doing here so early?"
end select
etc etc.
Hope this gets you on the right track.
EB
[This message has been edited by Elana (edited 04-07-2002).]