Search found 4 matches
- Thu Sep 13, 2007 1:51 am
- Forum: Developer's Forum for Windows
- Topic: SensorInput event stops firing?
- Replies: 14
- Views: 30790
Hi, Just to be explicit. Here is my argument in C#: namespace TDxTest { public partial class Form1 : Form { TDx.TDxInput.Device device; TDx.TDxInput.Sensor sensor; long counter; public Form1() { InitializeComponent(); device = new TDx.TDxInput.Device(); device.Connect(); sensor = device.Sensor; sens...
- Thu Sep 13, 2007 1:14 am
- Forum: Developer's Forum for Windows
- Topic: SensorInput event stops firing?
- Replies: 14
- Views: 30790
Hi, Thanks for replying. This is not how the TDxInput API has been designed. Using the Sensor() method of the TDxInput.Device instance will return the TDxInput.Sensor instance belonging to that device. That makes sense from a design point of view and also follows the conventions of the attribute idi...
- Tue Sep 11, 2007 2:32 am
- Forum: Developer's Forum for Windows
- Topic: SensorInput event stops firing?
- Replies: 14
- Views: 30790
Ok, I think I understand what is going on. The TDxInput API exposes the TDxInput.Sensor as an attribute of a TDxInput.Device instance. One would think that the sensor should be accessed by rules that conforms to the attribute idiom - that is wrong. Despite the attribute signature, the interface beha...
- Sat Sep 08, 2007 5:53 am
- Forum: Developer's Forum for Windows
- Topic: SensorInput event stops firing?
- Replies: 14
- Views: 30790
Hi guys, Please do NOT jump off to private message stream on this. I have been banging my head on the same issue for the last week. My objective is to enable our 6 million line enterprise application to appreciate 3DConnection input, but the event stream quickly stops if at all starting. I am curren...