OpenEdge ABL automatically close a yes/no message after a certon amount of time has pasted

后端 未结 3 905
旧时难觅i
旧时难觅i 2021-01-26 00:37

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.

3条回答
  •  执笔经年
    2021-01-26 00:55

    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.
    

提交回复
热议问题