经过一段时间后,OpenEdge ABL 自动关闭是/否消息

发布于 2025-01-03 13:07:17 字数 80 浏览 5 评论 0原文

现在我有: 消息“Hello World”查看为警报框警告按钮是-否更新 lVariable。

如何在 14 秒后自动点击“否”?

Right now I have:
message "Hello World" view-as alert-box warning buttons yes-no update lVariable.

how can I automatically click the no after 14 seconds.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

≈。彩虹 2025-01-10 13:07:17

如何以“另一种方式”做到这一点:

DEFINE FRAME f-message
      "This is your message"
      WITH CENTERED
      OVERLAY
      .


DO ON ENDKEY UNDO, LEAVE:

VIEW FRAME f-message.

PAUSE 14 NO-MESSAGE.

HIDE FRAME f-message.

END.

How to do this "another way":

DEFINE FRAME f-message
      "This is your message"
      WITH CENTERED
      OVERLAY
      .


DO ON ENDKEY UNDO, LEAVE:

VIEW FRAME f-message.

PAUSE 14 NO-MESSAGE.

HIDE FRAME f-message.

END.
情绪少女 2025-01-10 13:07:17

在ChUi,你不能。

(这还需要一些字符,所以我的答案最少为 30 个字符。)

In ChUi, you can't.

(and this is some more characters so I make the 30 char minimum for an answer.)

热风软妹 2025-01-10 13:07:17

如果您使用的是 10.2b+ 版本,您也许可以在 do/for/repeat 块上使用 STOP-AFTER 子句来控制这一点。

不确定,因为我自己没有那个版本可以尝试。

顺便提一句。始终将您的版本放在问题上,因为它可能会影响可用的选项。

If you're on version 10.2b+ you might be able to use the STOP-AFTER clause on a do/for/repeat block to control this.

Not sure as I don't have that version myself to try.

BTW. Always put your version on a question as it can make a difference to the options available.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文