Skip to main content
InSource Solutions

TN - 1034 How to show an industrial graphic in a popup window in InTouch OMI

This guide provides an overview of product features and related technologies. In addition, it contains recommendations on best practices, tutorials for getting started, and troubleshooting information for common situations.

To show graphic in a popup window…

  1. Place a button in a pane.
  2. Add the following script.

clipboard_e915b21efd66da05b6f6b013ef7398159.png

Dim graphicInfo as aaGraphic.GraphicInfo;
graphicInfo.Identity = "GraphicCaption"; 'Do not use spaces
graphicInfo.GraphicName = "WaterHeater"; 'name of Archestra Graphic
graphicInfo.WindowType = aaGraphic.WindowType.Modeless;
ShowGraphic( graphicInfo );

 

clipboard_eeed24a900d4b7747ecaf793a71bf2d13.png

  • Was this article helpful?