Installation manual

DEVICE OBJECT
83
7
PROPERTY PID
PURPOSE
Product ID.
DESCRIPTION
This property is set from the DLL network manager and represents an ID of the
product. Each Datalogic RF product has a different ID.
IDL
[propget, id(6), helpstring("property PID")] HRESULT PID([out, retval] short *pVal);
[propput, id(6), helpstring("property PID")] HRESULT PID([in] short newVal);
DATA TYPE
SHORT
POSSIBLE VALUES
The PID value of Datalogic RF products is listed in the following table:
Product PID Value
Undefined 0
Formula 734/RF 1
Formula 725/RF 2
Formula 660/RF 3
Gryphon™ M100 19761
Gryphon™ M200 19762
Dragon M101 20241
OM-Dragon M101 19729
STAR-Modem 20300
EXAMPLE
...
Dim DevObject as Device
Dim strProperties as String
...
‘ Show the Device properties
Set DevObject = RFNCCTL.Devices.Device(1500)
StrProperties = strProperties & “DevID = “& _
CStr(DevObject.DevID)
strProperties = strProperties & “PID = “ & CStr(DevObject.PID)
strProperties = strProperties & “RF Version = “ &_
CStr(DevObject.RFMaxProtocolVersion) & “.”& _
CStr(DevObject.RFMinProtocolVersion)
...