home *** CD-ROM | disk | FTP | other *** search
- // DbStblze.prg
- //
- // DbStabilize() - Repeatedly call stabilize until it returns .T.,
- // ensuring the same record is highlighted (for
- // database edits)
-
- FUNCTION DbStabilize(oTbr)
-
- LOCAL nSaveRecno := recno()
-
- oTbr:refreshAll()
- FullStabilize(oTbr)
-
- DO WHILE recno() != nSaveRecno
- oTbr:up()
- FullStabilize(oTbr)
- ENDDO
-
- RETURN NIL