Kbase P5208: How to properly change CSComboBox OCX Control's attributes at runtime?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  15/10/2008 |
|
Status: Verified
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".