Kbase 17468: How To Add Data To The CsCombo OCX Control
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  16/10/2008 |
|
Status: Unverified
GOAL:
How to Add Data to the CsCombo OCX Control
FACT(s) (Environment):
Windows 32-bit
FIX:
The following sample code assumes that the CSCombo OCX control in the UIB is being used.
To load the customer names from the sports database into the control, use code similar to the following:
FOR EACH Customer NO-LOCK:
chCtrlFrame:CSComboBox:AddItem(Customer.Name).
END.