Search found 2639 matches

by jwick
Mon May 05, 2008 6:03 am
Forum: Feedback
Topic: Spaceball 5000 serial, Reversing axises
Replies: 3
Views: 11499

The current drivers do not support serial devices. The last driver that works with serial devices can be downloaded from the web site. In that driver, you can switch the directions on the axes only by editing the config file for your application. If you find the AXIS_MAP_HRZ_USER entry in the config...
by jwick
Fri Apr 25, 2008 5:34 am
Forum: Windows Discussion Forum
Topic: Right mouse button function in Solid Edge
Replies: 2
Views: 5574

This post shows how to do that.
by jwick
Tue Apr 22, 2008 9:05 am
Forum: Developer's Forum for Windows
Topic: Integrating other GUI toolkits on Windows
Replies: 2
Views: 8437

Hello,

We
by jwick
Fri Apr 18, 2008 7:39 pm
Forum: Developer's Forum for Windows
Topic: Any issues with VC2008 or XP 64 pro?
Replies: 1
Views: 6228

Hi Wade,

I have no idea. RawInput is Microsoft's API. Perhaps they have problems on XP64 and/or VS2008. I didn't see anything on the web though. We'd have to check it out next week.
by jwick
Thu Apr 17, 2008 7:12 am
Forum: Developer's Forum for Windows
Topic: VS2005 MFC example?
Replies: 8
Views: 16935

The non-COM interface will continue to be supported.

If you have a COM-able app though, we should help you with MFC. I'll see what I can do to help you with that.
by jwick
Thu Apr 17, 2008 6:41 am
Forum: Developer's Forum for Windows
Topic: VS2005 MFC example?
Replies: 8
Views: 16935

The "old" SDK has win32 and MFC examples. You can get it from the Support->Driver Download page->SpaceTraveler->Archive->3DxWare SDK.

These examples do not use COM, but they are still valid.
by jwick
Thu Apr 17, 2008 6:33 am
Forum: Developer's Forum for Windows
Topic: SI_BUTTON_PRESS_EVENT event
Replies: 2
Views: 7813

Our apologies Magnus. That feature didn't get implemented. It should have been removed from si.h until it is. It is still on the list for a future major upgrade (no date is available for it).
by jwick
Sat Apr 12, 2008 6:56 am
Forum: Windows Discussion Forum
Topic: SpaceNavigator PE(USB) pan and rotate crazzy
Replies: 3
Views: 5385

I've seen this before. I can't recall exactly what it is. It is something simple though like 2 drivers running at once. While I am racking my brain, do the following: Uninstall 3DxSoftware. Delete siappdll.dll and spwini.dll from your System32 directory. Delete the contents of HKCU/software/3dconnex...
by jwick
Thu Apr 10, 2008 2:45 pm
Forum: Windows Discussion Forum
Topic: Space Navigator and Remote Desktop
Replies: 1
Views: 3952

This is news to me. What application are you using?
by jwick
Thu Apr 10, 2008 8:41 am
Forum: Windows Discussion Forum
Topic: Second Life ???
Replies: 46
Views: 77617

Here's another post that gives a link to the SL RC.
by jwick
Thu Apr 10, 2008 6:26 am
Forum: Windows Discussion Forum
Topic: PE and CATIA
Replies: 3
Views: 5524

Yes.
by jwick
Thu Apr 10, 2008 6:23 am
Forum: Windows Discussion Forum
Topic: Second Life ???
Replies: 46
Views: 77617

You need to use the 1.20 SL release candidate (or something even newer). Don't use the RCB9 driver. Just use the standard 3Dconnexion drivers.
by jwick
Wed Apr 09, 2008 7:55 am
Forum: Developer's Forum for Windows
Topic: Direct Input Example
Replies: 10
Views: 17406

HIDTest is just about as simple as it gets. There is very little going on there. I'm suggesting that you put that code into a separate thread so it doesn't block your main thread.
by jwick
Wed Apr 09, 2008 7:26 am
Forum: Developer's Forum for Windows
Topic: Direct Input Example
Replies: 10
Views: 17406

The way you've changed the code, you should return immediately but you won't have any data most of the time. All I wanted was to get the translation and rotation vectors, even if the device is not activated You can't get the data if there isn't anything there to be got. If you want to get new data a...
by jwick
Wed Apr 09, 2008 6:06 am
Forum: Developer's Forum for Windows
Topic: Direct Input Example
Replies: 10
Views: 17406

Read the documentation on WaitForMultipleObjects. If you wait, you will get woken whenever some data is available on the device. If you don't wait you will get woken when the timeout is exceeded, if nothing happens on the handles you are waiting on.