TBROWSE           Miscellaneous Comments

Clipper Version 1.29 dtd 04/15/91.

Problem Statement

1) oTb:Freeze must be defined _after_ the column to be frozen is added
to the browse object.

2) oTb:setColumn returns the browse object, not the column object as
stated in the NG.

3) oTb:colorSpec affects the color outside the browse window. Use
SetColor() before writing to this area.

4) Using oTb:panRight() and oTb:colorRect() together can cause a runaway
situation requiring a warm boot - specifically, this sequence:

oTb:colorRect(), InKey(), oTb:panRight(), oTb:colorRect(), oTb:Stabilize()

A solution is to use oTb:refreshCurrent() in place of the 2nd
oTb:colorRect() or use the sequence:

oTb:colorRect(), InKey(), oTb:colorRect(), oTb:panRight(), oTb:Stabilize()