Comms

Projector Patrol Comms are projector drivers written as Microsoft COM objects. All of the projector drivers expose a standard set of methods and properties. These methods and properties are designed to expose functionality that is common to all projectors.

To create, initialize, use and destroy an instance of a Comms projector driver object in VBScript:

' Create an Instance of the Comms projector driver object.
'
Set objProjector = CreateObject("EPSON_EE")

' Initialize and use the driver object.
'
With objProjector
  .IP = "192.168.1.250"
  .Port = 3629
  .On
End With

' Destroy the driver object after use.
'
Set objProjector = Nothing