Search found 2630 matches

by jwick
Thu Jan 15, 2009 7:20 am
Forum: Developer's Forum for Windows
Topic: HOW TO BUILD STATIC LIB FOR SPACEMOUSE?
Replies: 9
Views: 15622

Are you linking to the siapp.lib library from the SDK?
by jwick
Thu Jan 15, 2009 6:35 am
Forum: Developer's Forum for Windows
Topic: HOW TO BUILD STATIC LIB FOR SPACEMOUSE?
Replies: 9
Views: 15622

You are probably getting link errors because you are mangling the names in one place and not in another.

I don't know what code you are using. What are some of the names of the functions?

To change to C++, change the extension to .cpp, compile, and correct any compiler errors <G>.
by jwick
Mon Jan 12, 2009 10:20 am
Forum: Developer's Forum for Windows
Topic: Differentiating between Roll and Spin
Replies: 8
Views: 14657

That's a very basic example. It doesn't tell you how to use the rotations. You need to use the angle along with the axis data. A better example is the csmonitor example on the ftp site. ftp:/ *** *** login: *** password: *** subdir: TDxInput Moderator Edit: the sample code is no longer available fro...
by jwick
Mon Jan 12, 2009 9:26 am
Forum: Developer's Forum for Windows
Topic: Differentiating between Roll and Spin
Replies: 8
Views: 14657

All 6 DOFs should be arriving on their own separate values. Make sure you don't have some of them turned off in the driver (3DxWare GUI).

What example are you referring to? Maybe there is a bug in it.

Jim
3Dx Software Development
by jwick
Mon Jan 12, 2009 9:20 am
Forum: Windows Discussion Forum
Topic: Autodesk Revit
Replies: 29
Views: 74480

It depends on how much you bug them. We've tried...but we aren't customers of theirs. We don't have any pull. Only those who pay have pull.
by jwick
Sun Jan 11, 2009 7:51 am
Forum: Developer's Forum for Windows
Topic: TDxInput.dll - problems compiling also under x32
Replies: 7
Views: 16655

Sorry, I got this last week but forgot to post it. Thanks for reminding me. From the TDxInput developer (who does all his development on an x64 machine): The best way to go about using TDxInput in C#/VB is to NOT reference the COM dll. The dll to reference in the project is the .NET assembly TDx.TDx...
by jwick
Sat Jan 10, 2009 8:44 am
Forum: Developer's Forum for Windows
Topic: HOW TO BUILD STATIC LIB FOR SPACEMOUSE?
Replies: 9
Views: 15622

You can call C from C++ or you can change the code to C++. To call
C from C++, enclose the declarations in an extern "C" {...} section.
by jwick
Tue Jan 06, 2009 3:50 pm
Forum: Windows Discussion Forum
Topic: This doesn't bide well for the future.....
Replies: 106
Views: 192040

Could any of you who would like to participate, do as this kind fellow did and use this other thread to mention what joystick apps you are using.

Many thanks.
Jim
3Dx Software Development
by jwick
Tue Jan 06, 2009 3:50 pm
Forum: Windows Discussion Forum
Topic: <DONE> SpaceNavigator Driver - Mouse Joystick Keyboard
Replies: 780
Views: 1925308

Could any of you who would like to participate, do as this kind fellow did and use this other thread to mention what joystick apps you are using.

Many thanks.
Jim
3Dx Software Development
by jwick
Tue Jan 06, 2009 3:29 pm
Forum: Windows Discussion Forum
Topic: Joystick Driver request
Replies: 45
Views: 84059

What specifically are these other apps you mentioned? I'd like to check out the joystick implementation in them.

Thanks.
Jim
3Dx Software Development
by jwick
Sun Dec 21, 2008 11:25 am
Forum: Developer's Forum for Windows
Topic: Help!
Replies: 6
Views: 11555

You may have to read up on the HID API. The code is long but fairly easy to understand (IMO). The code reads all the descriptive data from each device into an array. The array is loaded in the order the devices are discovered. The code then attempts to wait on all devices with usage page 1, usage 4 ...
by jwick
Sun Dec 21, 2008 10:28 am
Forum: Developer's Forum for Windows
Topic: Help!
Replies: 6
Views: 11555

Yes of course the HIDTest code lists the information for all your devices, but only, I think, prints out the values for the first device in the list. Since your USB bus can constantly have a different arrangement of devices, you need to look at each device descriptor to figure out which one you want...
by jwick
Sun Dec 21, 2008 8:13 am
Forum: Developer's Forum for Windows
Topic: Help!
Replies: 6
Views: 11555

If you don't want a windows main loop, you should use the HID API. There are examples posted in the forum.
by jwick
Sat Dec 20, 2008 9:13 pm
Forum: Developer's Forum for Windows
Topic: C# Example compilation issue - missing something
Replies: 14
Views: 23849

Hey no problem man. It's my job. And you got me curious as to why it didn't work. Unfortunately, we automatically install the x64 version on x64 (we also install the x86 version too, as you see). It may have something to do with the x64 version of VS2005. It works fine on an x86 machine. Go figure. ...
by jwick
Sat Dec 20, 2008 2:16 pm
Forum: Developer's Forum for Windows
Topic: C# Example compilation issue - missing something
Replies: 14
Views: 23849

Sorry it took so long. I had to find an x64 machine then install Visual Studio 2005. Sure enough you are absolutely correct. It appears the 64-bit TDxInput is not being registered correctly. I even tried registering it manually and it didn't show up. You must have been the first to have tried it. I'...