如何动态将值添加到进行中的ocx组合框4gl

时间:2019-12-05 05:54:34

标签: openedge progress-4gl

尝试将值从数据库字段添加到ocx组合框。如果您在其中键入值,它将为您提供匹配的值。

1 个答案:

答案 0 :(得分:0)

您可以使用旧的“ COM对象查看器”查看ocx。它可以在“ ProTools”中找到。

CSCombo32.ocx通常在/ bin / system下找到。不过仅在32位安装上。

enter image description here

您可以看到AddItem包含一个字符串和一个索引。索引是可选的。

 // we win... 
 YouWin = true;

 foreach (var item in Pictures) 
   if (item.rotation.z != 0) {
      // ... unless we don't win
      YouWin = false;

      break;
   }

 if (YouWin) {
   // Win 
   int currentSceneIndex = SceneManager.GetActiveScene().buildIndex;
   SceneManager.LoadScene(currentSceneIndex + 1);
 } 

通过调用 DEFINE VARIABLE i AS INTEGER NO-UNDO. i = chCtrlFrame:CSCombobox:AddItem("Hello"). MESSAGE "Hello added at position " i VIEW-AS ALERT-BOX. 来获取值:

Value()