DeviceObject
This object is declared as a variable type and used to execute COM objects from the CE device. It is not part of the Device object directly but is a subset of CE functionality specifically for calling COM objects.
Group: ceObject
Examples:
The following examples would all start with:
Dim [WithEvents] oMyObj As DeviceObject
If the object supports events include the WithEvents statement in the Dim statement. If WithEvents is declared as part of the Dim statement, this event would also be available from the script window’s drop-down:
Private Sub oMyObj_OnEvent(ByVal EventName As String, ByRef rsData As DataRecord)
End Sub