Highlight current in a form in an ADP database

F

FRED

I would like to highlight the current record in a continious form in an ADP
database.
I found some solution for *.MDB but they are not working in ADP (recordset
findfirst not supported in ADP).

Any thought ? ? ?


FRED
 
R

Robert Morley

While you can't do "FindFirst", you can do a "MoveFirst" followed by a
"Find", and that should get you to the same place.


Rob
 
A

aaron.kempf

you can use conditional formatting; in combination with some
'isCurrentRecord' vba functions to do this
 
Top