Highlight current in a form in an ADP database

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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
 
you can use conditional formatting; in combination with some
'isCurrentRecord' vba functions to do this
 
Back
Top