home *** CD-ROM | disk | FTP | other *** search
- // TBlib.rmk
-
- .prg.obj:
- Clipper $* /a /m /n /w
- Lib tblib -+ $*.obj;
-
- dict.obj: dict.prg
-
- // MyTBColumnNew() - Create TBColumn object, allows setting of all i vars
- MyTBCNew.obj: MyTBCNew.prg
-
- // MyTBrowseNew() - Create TBrowse object, allows setting of all i vars
- MyTBrnew.obj: MyTBrnew.prg
-
- // TBCClone() - Return a clone of an existing TBColumn object
- TBCClone.obj: TBCClone.prg
-
- // TBRClone() - Return a clone of an existing TBrowse object
- TBRClone.obj: TBRClone.prg
-
- // TBMsg() - Display a message at maxrow() without side-effect
- TBMsg.obj: TBMsg.prg
-
- // FullStabilize() - Repeatedly call stabilize until it returns true
- FullStab.obj: FullStab.prg
-
- // KeyStabilize() - Repeatedly call stabilize until it returns true or
- // the user preses a key
- KeyStab.obj: KeyStab.prg
-
- // StdMeth() - Apply standard key to Tbrowse object. Returns true if
- // key handled, otherwise false
- StdMeth.obj: StdMeth.prg
-
- // NumVisibleRows() - Retusn number of visible data rows
- NumVis.obj: NumVis.prg
-
- // TBCColPos() - Returns array containing column position of
- // each visible column
- TBCColPo.obj: TBCColPo.prg
-
- // TBWhSkip() - skipBlock function implementing general purpose
- // while condition
- TBWhSkip.obj: TBWhSkip.prg
-
- // TBWhStart() - goTopBlock function implementing general purpose
- // while condition
- TBWhStrt.obj: TBWhStrt.prg
-
- // TBWhEnd() - goBottomBlock function implementing general purpose
- // while condition
- TBWhEnd.obj: TbWhEnd.prg
-
- // TBForStart() - goTopBlock function implementing general purpose for
- // condition
- TBFrStrt.obj: TBFrStrt.prg
-
- // TBForEnd() - goBottomBlock function implementing general purpose
- // for condition
- TBFrEnd.obj: TBFrEnd.prg
-
- // TBForSkip() - skipBlock function implementing general purpose
- // for condition
- TBFrSkip.obj: TBFrSkip.prg
-
- // TBFwFirst() - goTopBlock function implementing general purpose
- // for and while condition
- TBFwFrst.obj: TBFwFrst.prg
-
- // TBFwLast() - goBottomBlock function implementing general purpose
- // for and while condition
- TBFwLast.obj: TBFwLast.prg
-
- // TBFwSkip() - skipBlock function implementing general
- // purpose for and while condition
- TBFwSkip.obj: TBFwSkip.prg
-
- // AddAllFields() - Add all fields in current database as TBColumns
- // to the passed TBrowse object
- AddFlds.obj: AddFlds.prg
-
- // DbSkipBlock() - Abstracted skipblock for database browsing
- DbSkpBlk.obj: DbSkpBlk.prg
-
- // DbStabilize() - Repeatedly call stabilize until it returns .T.,
- // ensuring the same record is highlighted (for
- // database edits)
- DbStblze.obj: DbStblze.prg
-
- // TBForWhile() - Return TBrowse object implementing for and
- // while conditions. Pass as blocks.
- TbFWhle.obj: TbFWhle.prg
-
- // TBFwGoNext() - Move to next record with for and while condition
- // set. Return .T. if moved, otherwise .F.
- TBFwNext.obj: TBFwNext.prg
-
- // TBFwGoPrev() - Move to previous record with for and while
- // condition set. Return .T. if moved, otherwise .F.
- TBFwPrev.obj: TBFwPrev.prg
-
- // TBaGoLast() - Go to last record supporting append mode
- TBaGoLst.obj: TBaGoLst.prg
-
- // TBaGoFirst() - Go to first record supporting append mode
- TBaGoFst.obj: TBaGoFst.prg
-
- // TBaGoNext() - Go to next record supporting append mode
- TBaGoNxt.obj: TBaGoNxt.prg
-
- // TBaGoPrev() - Go to previous record supporting append mode
- TBaGoPrv.obj: TBaGoPrv.prg
-
- // TBfwaFirst() - TBrowse routine called by goTopBlock. fwa stands for
- // "for/while/append". It supports generic for and while
- // conditions and append mode.
- TBFwaFst.obj: TBFwaFst.prg
-
- // TBfwaLast() - Routine called by goBottomBlock to move to the last
- // record in the database matching the for and while
- // condition, and taking append mode into account.
- TBFwaLst.obj: TBFwaLst.prg
-
- // TBfwaGoNext() - Move to next record supporting for and while
- // conditions and append mode
- TBFwaNxt.obj: TBFwaNxt.prg
-
- // TBfwaGoPrev() - Move to previous record record supporting for and
- // while conditions and append mode
- TBFwaPrv.obj: TBFwaPrv.prg
-
- // TBfwaBrowse() - Sets up TBrowse object for a browse with a while
- // and for condition and append mode
- TBFwaBrs.obj: TBfwaBrs.prg
-
- // MyBrowse1() - Simple generic browse routine
- MyBrows1.obj: MyBrows1.prg
-
- // MyBrowse2() - Standard generic browse routine. Allows key
- // specific actions to be passed as key / block pairs
- MyBrows2.obj: MyBrows2.prg