Applies To:
  • CitectSCADA 5.00, 5.00 Service Pack A, 5.00 Service Pack B

Summary:
I have some objects configured to change pages when I click on them. However, after clicking on the object all flashing colours in my project cease to flash until I restart the display client.

Solution:
CIT has confirmed this to be a problem in Citect for Windows versions 5.00, 5.00 Service Pack A and 5.00 Service Pack B.

This problem occurs when any Page Cicode function is called by clicking on a non-button object. This problem can be worked around by calling the SleepMS function immediately prior to calling the Page function when you click on an object.

For example, if you have configured an object's Input | Touch command as this:

PageDisplay("Menu");

then replace this by:

SleepMS(50);
PageDisplay("Menu");

This problem does not occur when clicking on a true button object. This problem will be fixed in an upcoming service pack.

 

Keywords:
 

Attachments