Consultor Eletrônico



Kbase 33360: No horizontal Scrollbar in Browse widget when columns are made visible again
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   5/10/1998
Solution ID: P3360

FACT(s) (Environment):

Progress 9.1A
Progress 9.1B
Progress 9.1C
Windows

SYMPTOM(s):

No horizontal Scrollbar in Browse widget

Hidden columns are made visible again

CAUSE:

The EXPANDABLE attribute of the browse is turned on

FIX:

This has been fixed in Progress 9.1D, however, in earlier releases this problem can be worked around by using the following code:


DEFINE VARIABLE PrevExp AS LOGICAL NO-UNDO.

PrevExp = myBrowse:EXPANDABLE.
myBrowse:EXPANDABLE = NO.
customer.comments:VISIBLE IN BROWSE b = YES.
myBrowse:EXPANDABLE = PrevExp.