Hi:
Am using the following VB6 code using the ActiveHome control with a CM15A. And I am using a PowerHouse Platinum Remote (UR73A) to send the signal to the CM15A.
Private Sub ActiveHome1_RecvAction(ByVal bszAction As Variant, ByVal bszParm1 As Variant, _
ByVal bszParm2 As Variant, ByVal bszParm3 As Variant, ByVal bszParm4 As Variant, _
ByVal bszParm5 As Variant, ByVal bszReserved As Variant)
If bszParm1 = vbNullString Then bszParm1 = "null-1"
If bszParm2 = vbNullString Then bszParm2 = "null-2"
If bszParm3 = vbNullString Then bszParm3 = "null-3"
If bszParm4 = vbNullString Then bszParm4 = "null-4"
If bszParm5 = vbNullString Then bszParm5 = "null-5"
If bszReserved = vbNullString Then bszReserved = "Reserved-Null"
Debug.Print bszAction, bszParm1, bszParm2, bszParm3, bszParm4, bszParm5, bszReserved
End Sub
This is what prints out when the Receive Event is triggered by the CM15A:
recvrf e1 Off 0 5/15/2006 8:17:15 PM null-5 Reserved-Null
However, the actual time on my computer is 4:17 p.m.
Anybody know why there is an exact 4 hour difference? And possibly how to rectify the situation so that the time matches the computer time?
Thanks,
Hank