Consultor Eletrônico



Kbase 35208: How to properly change CSComboBox OCX Control's attributes at runtime?
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   8/15/2000
Solution ID: P5208

GOAL:

How to properly change CSComboBox OCX Control's attributes at runtime?

FIX:

References to attributes must be made at the CSComboBox object level, not at the chCtrlFrame component-handle variable level. E.g.:

chCtrlFrame:CSComboBox:TEXT = "Test".
chCtrlFrame:CSComboBox:ENABLED = FALSE.

The following does not work properly:
chCtrlFrame:TEXT = "Test".