Show Specific Screen upon Login

Discussion of application development using iX Developer, including but not limited to getting started, using the functions tab, properties, objects and installation.
Post Reply
mattw6283
Posts: 1
Joined: Mon May 26, 2014 10:31 pm

Show Specific Screen upon Login

Post 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

romanshanin
Posts: 3
Joined: Fri Feb 21, 2014 9:05 am
Location: Russia

Re: Show Specific Screen upon Login

Post 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();
}

Post Reply