Running code for each record on continous form.

  • Thread starter Thread starter TimJ
  • Start date Start date
T

TimJ

Say I Have A form with three fields,

ID Date Status

and in the OnCurrent procedure I have

If Me.Status = "Done" Then
Me.Date.FontWeight = 600
End If

So every time I change the record it shows the Date Semi-
Bold if status is done.(Obviously)

Works Great

Now how do I make this work if the formview is set to
continous.

Right now it just bolds every date field regardless of
status.

I believe it runs the code for the first record then
builds the form.

TIA,
Tim J
 
Back
Top