Архив метки: System Platform

Обновление Wonderware System Platform 2014 R2 SP1

 

Вышло обновление для SP 2014R2: SP1, что нового:

  • Wonderware System Platform 2014 R2 SP1 — General Notes
    • Compatibility with New Versions of Microsoft Windows operating systems, the .NET Framework, and SQL Server
    • Expanded Support for Virtual Environments
    • Enhanced Security
  • Wonderware Application Server 2014 R2 SP1
    • Improved IT Compliance
    • Support for Running a GR Node Hosted on SQL Server Using a Non-Default Port
    • Improved Stability During Failover of Redundant AppEngines
    • Find Checked Out Objects Search Function
  • Wonderware InTouch HMI 2014 R2 SP1
    • Support Input and Display of Number Formats by Regional Locale
    • Export and Import Application Style Library Applied to ArchestrA Symbols in Modern Applications
    • Export ArchestrA Graphic Toolbox Symbols That Have Embedded Symbols from Automation Objects
    • Export Localization Strings of Selected Symbols in Modern Applications
    • Export Selected Symbols from the ArchestrA Toolbox in Modern Applications
    • Support for the Last History Statistic of the History Summary Data Type Custom Property
    • Include an Overridden Tag for Programmatic Symbol Exports
    • Installation Option to not Install a Galaxy Repository on the InTouch Development Computer
  • Wonderware Historian Server 2014 R2 SP1
    • Replication to Wonderware Online
    • SQL Queries for Event Blocks
    • Improved Retrieval for Slow-Changing Cyclically-Stored Tags
  • Wonderware Historian Client 2014 R2 SP1
    • Support for Different SQL Server Default Port Numbers
    • Improvements to Query and Workbook Tools Related to Optimistic Quality Rule

Подробности см. здесь

Как открыть PDF файл по нажатию на кнопку в AA графике

Dim objProcess As System.Diagnostics.Process; 
objProcess = New System.Diagnostics.Process(); 
objProcess.StartInfo.FileName = "C:\Program Files\Adobe\Reader 10.0\Reader\AcroRd32.exe"; 
objProcess.StartInfo.Arguments = "/A page=10 C:\Program Files\Wonderware\InTouch\ITDocGuide.pdf"; 
objProcess.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Normal; 
objProcess.Start();