Search found 175 matches

by wlederer
Wed May 28, 2014 8:27 am
Forum: Scripting
Topic: How to close screen with script?
Replies: 9
Views: 15752

Re: How to close screen with script?

Thank You Bjornidar.
I deleted the screen and added it again. The problem disappeared. Don't know the reason.
What is the difference between "&" and "&&"?
by wlederer
Fri Apr 25, 2014 1:14 am
Forum: Scripting
Topic: How put map on screen with info about events?
Replies: 2
Views: 5659

Re: How put map on screen with info about events?

Thank You Stuart.
Is it possible to use the Google Maps on T7A offline?
by wlederer
Tue Apr 22, 2014 1:43 am
Forum: Scripting
Topic: How to give name of exported file from screen?
Replies: 2
Views: 6826

Re: How to give name of exported file from screen?

It should work. Maybe, You forgot to refresh the tag with the newly changed file name? Something like:
Globals.Tags.FileName.Read();
regards, Waldemar
by wlederer
Thu Apr 17, 2014 3:09 am
Forum: Application Development
Topic: Colours in Alarm server?
Replies: 1
Views: 4783

Colours in Alarm server?

Which colours schould be used in Alarm server to make alarm and warning messages easy readable? Real colours on HMI do not correspond those which are chosen in IX Developer.
Is there somewhere the recommended values?
by wlederer
Tue Apr 15, 2014 1:55 am
Forum: Scripting
Topic: How put map on screen with info about events?
Replies: 2
Views: 5659

How put map on screen with info about events?

Did somebody put a map on screen with information about some events?
I have tags with data including GPS coordinats. How can they be shown on screen?
Regards, Waldemar
by wlederer
Thu Apr 10, 2014 9:31 am
Forum: Scripting
Topic: How to close screen with script?
Replies: 9
Views: 15752

Re: How to close screen with script?

void Stopping_state_ValueOn(System.Object sender, System.EventArgs e) {//record trend to USB when the system stops Globals.Tags.Last_session_number.Value=0; if (Globals.Tags.History_trend_recorded.Value==false) { Globals.ExportTrendData.ExportTrend("Datalogger1"); Globals.Tags.History_trend_recorded...
by wlederer
Tue Apr 08, 2014 2:25 am
Forum: Scripting
Topic: How to close screen with script?
Replies: 9
Views: 15752

Re: How to close screen with script?

It is calling from 2 places:
1. Button "Record data to USB", placed on the screen "Statistic".
2. Tags>Scripts> aTag's_ValueOn, when 2 other tags meet conditions.
by wlederer
Thu Apr 03, 2014 1:38 am
Forum: Scripting
Topic: How to close screen with script?
Replies: 9
Views: 15752

Re: How to close screen with script?

Thank You Edmund, works fine! What is confusing, every time when HMI power up, the new popup screen appears. How can it be prevented?

Regards, Waldemar
by wlederer
Wed Apr 02, 2014 4:23 am
Forum: Scripting
Topic: How to close screen with script?
Replies: 9
Views: 15752

How to close screen with script?

I created a popup screen and open it with the code:

Globals.MyScreen.Show();

How can I close the screen using script?

regards, Waldemar
by wlederer
Tue Mar 25, 2014 3:47 am
Forum: Scripting
Topic: Frozen screen
Replies: 2
Views: 5618

Re: Frozen screen

Thank You Stuart.