Hello,
iam trying to use the sdk in Excel , but with the following Code i only receive "0". Thank you for your help
Private WithEvents Sensor1 As TDxInput.Sensor
Private WithEvents Keyboard1 As TDxInput.Keyboard
Private WithEvents Device1 As TDxInput.Device
Private Sub CommandButton1_Click()
Set Device1 = New TDxInput.Device
Set Sensor1 = Device1.Sensor
Set Keyboard1 = Device1.Keyboard
Device1.Connect
Dim Translation1 As TDxInput.Vector3D
Set Translation1 = Sensor1.translation
Dim Rotation1 As TDxInput.AngleAxis
Set Rotation1 = Sensor1.rotation
Label1.Caption = Translation1.X
End Sub

