Applies To:
  • CitectSCADA 5.xx
  • CitectHMI 5.xx

Summary:
I have pages of different sizes (VGA, SVGA, XGA) and wish to display these all in full screen in the same project (or in included projects in the same runtime environment). When I run the project, the pages do not take up the entire screen. Is there a way to automatically stretch all pages to the resolution of the computer monitor? 

Solution:
There are a few things you must do:

1. Ensure [Animator]Fullscreen=1

2. Ensure [Page]DynamicSizing=1

3. Ensure the check box "Display Title Bar" is unticked near the end of the Computer Setup Wizard.

4. Wherever you use the PageDisplay() function, or wherever you change pages, add the following two Cicode function AFTER the PageDisplay() function call:

WinMode(9);

WinMode(3);

This will ensure all pages take up the entire screen, no matter what size they were originally created at. Tested in v5.42 of Citect.

 

Keywords:
 

Attachments