Search found 3 matches

by romanshanin
Tue Nov 11, 2014 2:26 am
Forum: Application Development
Topic: Analog Numeric Read/Write
Replies: 2
Views: 7366

Re: Analog Numeric Read/Write

I tried to do same thing in summer and decided that it's impossible on my iX T10A.
Since then was released new version of iX Developer 2.15. You should check in new version. I'm not sure, because I didn't use it,but I think that it's only chance.
by romanshanin
Wed Oct 08, 2014 4:04 am
Forum: Application Development
Topic: One more thread about performance...
Replies: 1
Views: 6008

One more thread about performance...

Hello all. I know about many threads in this board about HMI performance, but however i decided to make one more. I already developed two projects using iX T10A Panel in pair with GE PLC (com via GE SRTP TCP/IP) and Panasonic PLC (com via Matsushita-Mewtocol COM). Both projects has the same problem ...
by romanshanin
Fri Jul 25, 2014 6:02 am
Forum: Application Development
Topic: Show Specific Screen upon Login
Replies: 1
Views: 5694

Re: Show Specific Screen upon Login

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