<< Click to Display Table of Contents >>
Password Confirmation |
At every 10 minutes, users must confirm their password.
1.Insert in Viewer a Counter Tag named as "ConfirmPassword".
2.Configure the following properties of this Counter Tag:
•AutoRestart: True
•CounterType: 0 - Preset
•Preset: 600
3.On Counter Tag's OnPreset event, insert the next script.
'Confirm password
If Parent.PasswordConfirm(True) = False Then
'Leave Viewer
Parent.Exit()
End If
4.Execute the application and test this new functionality.