I cannot get sendrf to work on Windows XP Pro SP2 using the CM19A and VB.net. What am I doing wrong? I can receive commands flawlessly and am using the most updated driver that I can find.
Imports ActiveHomeScriptLib
Public Class Form1
Dim WithEvents ActiveHomeObj As ActiveHomeScriptLib.ActiveHome
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
ActiveHomeObj = New ActiveHome
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
ActiveHomeObj.SendAction("sendrf", "a2 off")
End Sub
End Class