Hello
is there a chance to set with a visu input the auto-logout time?
At the moment, it is a fix value set in visu-manager.
But for individual configurating of passwort policies I create a visu-dialog to set policies and there for an option to set auto-logout-time.
But till now, I haven't found a solution.
Maybe someone has an idea?
Thanks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
You could try using the VUM_UserGroup struct from the VisuUserManagement library. I haven't tried this, but there is a variable for tAutoLogout to set the logout time.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello
is there a chance to set with a visu input the auto-logout time?
At the moment, it is a fix value set in visu-manager.
But for individual configurating of passwort policies I create a visu-dialog to set policies and there for an option to set auto-logout-time.
But till now, I haven't found a solution.
Maybe someone has an idea?
Thanks
You could try using the VUM_UserGroup struct from the VisuUserManagement library. I haven't tried this, but there is a variable for tAutoLogout to set the logout time.
decleration:
fbVisuUserMgmt : VisuUserManagement.VUMUserGroup;
bAutoLogOff : BOOL;
tAutoLogOffTime : TIME;
wstGroupName : WSTRING;
code:
fbVisuUserMgmt.wstGroupName := wstGroupName;
fbVisuUserMgmt.xAutoLogout := bAutoLogOff;
fbVisuUserMgmt.tAutoLogout := tAutoLogOffTime;
Tried it that way. But how to execute?
Doing fbVisuUserMgmt() dosn't work.
Maybe silly question, but I'm a bit unexperienced