Locks - Keys - Functional Security

Is there a "Function" I can assign to a lock that allows exiting the Workspace (Operate) application?

Operators keep accidentally turning the monitors off.  When the monitor is turned back on, Operate is only taking up about 60% of the screen, and nothing seems to want to make it go back to full screen except exiting and restarting Operate.

Any ideas?

Thanks,

 Travis

  • Travis –
     
    This is what I used for my situation.  Your exact code will depend on whether you have one, two, or four monitors and how they are arranged.
     
        'WindowState = Restore
        Application.WindowState = 1
       
        'Position = Top Left
        Application.Top = 0
        Application.Left = 0
       
        'Width and Height maximized
        Application.Width = 100
        If frsIsDualMonitor Then
          Application.Height = 200
        Else
          Application.Height = 100
        End If
     
    Aaron Crews | Engineering Lead, PSS Business Development
     
    From: Travis Neale [mailto:bounce-travisneale@community.emerson.com]
    Sent: Tuesday, September 18, 2012 1:35 AM
    To: DeltaV@community.emerson.com
    Subject: RE: [EE365 DeltaV Track] Locks - Keys - Functional Security
     

    That would actually be preferred!