Page 1 of 1

Show Specific Screen upon Login

Posted: Tue Jul 15, 2014 6:21 pm
by mattw6283
When the operator presses a button labeled Main Menu , Log in Dialog comes up. If a correct log in is supplied the operator is directed to a different screen.

by setting a multi-action to the button to bring up the log in dialog and show new screen it does not work, as the screen must only be shown with a successful log in.

I cant seem to find how to make a screen show upon a successful log in , is there away to do this operation via script?

Globals.Security seems to have limited options towards log in attempts / success

Can you please help me get on the right track to solving this problem

Re: Show Specific Screen upon Login

Posted: Fri Jul 25, 2014 6:02 am
by romanshanin
I think you can add SystemTagCurrentUser to Tags list and add script to ValueChange event.

Code: Select all

if (Globals.Tags.SystemTagCurrentUser.Value == "username")
{
Globals.Screen1.Show();
}