Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在计算器 oracle 表单开发人员中添加退格按钮
退格按钮的代码是什么。从显示项目中删除值
你可以在触发器上做这样的事情WHEN-BUTTON-PRESSED:
WHEN-BUTTON-PRESSED
:yourBlock.field := substr(:yourBlock.field, 0, length(:yourBlock.field) -1);