-1

How to display the message after 10 min of logging-in in progress4GL

A user can be logged in for a maximum of 10 minutes in the session. A warning message should be displayed after 9 minutes of logging in .

Tom Bascom
  • 13,405
  • 2
  • 27
  • 33

1 Answers1

0

You can try using ETIME to calculate the time after logging in (just remember that this is in milliseconds)...

https://knowledgebase.progress.com/articles/Article/P55318

DEFINE VARIABLE timer AS INT64 NO-UNDO.

    timer = ETIME(yes).

    WHEN timer > 600000 THEN DO:
        //code

    END.
Raphael Frei
  • 361
  • 1
  • 10