首页 > 解决方案 > 如何在 oracle 表单 11g 中将焦点设置在 textitem 上?

问题描述

我正在用 oracle 形式 11g 制作计算器

我的要求是当按钮按下然后专注于 textitem

如何实现这个目标?

标签: oracleoracle11goracleforms

解决方案


You should create a when-button-pressed trigger on the button. In the when-button-pressed trigger you can use the GO_ITEM built-in to go to an item on of a specified block. After this action the focus will stay on the item specified:

GO_ITEM('blockname.itemname');


推荐阅读