0

我正在表单开发人员 11g 上创建计算器

我想在一个显示项中显示多个值,例如 1 + 1

我有多个按钮,例如 1,2,3... 等等

4

1 回答 1

1

如前所述,使用串联;每个按钮都有自己的WHEN-BUTTON-PRESSED触发器并执行

-- WBP on digit '1' button
:block.item := :block.item || '1';

-- WBP on digit '2' button
:block.item := :block.item || '2';

--WBP on the "+" sign button
:block.item := :block.item ||'+';

等等。

于 2018-03-18T17:52:56.883 回答