You can use the Circle method of the report object. In the example below, I have a text box named Eggs with a numeric value. I want to draw a red circle around the value if it is less than 50.
Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer)
If Me.Eggs < 50 Then...