Hi everyone!
Is there a way to find out how many times individual displays are selected and how long the display remains open for viewing per workstation for a defined time period?
The thought is that it may be helpful to know those statistics when beginning efforts to create useful level 2 displays, minimizing the number of displays, transitioning to live, etc.
Thanks!
Jenny
Yes this can be done, this will get you on the way:
Public Display1 As StringPublic Display2 As StringPublic Display3 As StringPublic Display4 As String
Private Sub gs_OpenPictures_OnChange()Dim strDisplay As StringDim DisplayChange As Boolean
On Error GoTo ErrorHandler strDisplay = Trim(frsVariables.gs_mainCurrent.CurrentValue) If IsEmpty(strDisplay) = False And _ StrComp(strDisplay, "") <> 0 And _ StrComp(strDisplay, "EMPTY") <> 0 Then Display1 = strDisplay DisplayChange = True End If strDisplay = Trim(frsVariables.gs_mainCurrent2.CurrentValue) If IsEmpty(strDisplay) = False And _ StrComp(strDisplay, "") <> 0 And _ StrComp(strDisplay, "EMPTY") <> 0 Then Display2 = strDisplay DisplayChange = True End If strDisplay = Trim(frsVariables.gs_mainCurrent3.CurrentValue) If IsEmpty(strDisplay) = False And _ StrComp(strDisplay, "") <> 0 And _ StrComp(strDisplay, "EMPTY") <> 0 Then Display3 = strDisplay DisplayChange = True End If strDisplay = Trim(frsVariables.gs_mainCurrent4.CurrentValue) If IsEmpty(strDisplay) = False And _ StrComp(strDisplay, "") <> 0 And _ StrComp(strDisplay, "EMPTY") <> 0 Then Display4 = strDisplay DisplayChange = True End If If DisplayChange = True Then 'This is where your logic would go to save the time, and displays '"Now" will give you a timestamp 'frsVariables.gs_wsName.CurrentValue will give you the workstation name as you will want to include this and maybe use this for filename for your data End If Exit SubErrorHandler: HandleErrorEnd Sub
Do you have an Emerson or Emerson Impact Partner office/person that supports you?
In reply to Matt Stoner:
In reply to Jenny La Bounty:
Andre Dicaire
In reply to Andre Dicaire:
In reply to Michael Moody:
In reply to Benji_Kidmose: