Search found 2631 matches

by jwick
Thu Apr 10, 2008 2:45 pm
Forum: Windows Discussion Forum
Topic: Space Navigator and Remote Desktop
Replies: 1
Views: 3948

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: 76526

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: 5519

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

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: 17369

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: 17369

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: 17369

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.
by jwick
Tue Apr 08, 2008 12:27 pm
Forum: Developer's Forum for Windows
Topic: Linkage Error
Replies: 2
Views: 7337

It looks like you are not linking in the hid library, nor the setup api.
by jwick
Mon Apr 07, 2008 6:10 am
Forum: Windows Discussion Forum
Topic: Space navigator : How change Axis for rotation button ?
Replies: 2
Views: 5565

You can use the 3DxWare GUI to change to zoom direction, which swaps two translation axes and two rotation axes. Or you can read this post to see how to do the editing manually in the .scg file.
by jwick
Mon Apr 07, 2008 6:03 am
Forum: Developer's Forum for Windows
Topic: SpaceExplorer & SpaceNavigator polling rate?
Replies: 3
Views: 9022

Sorry. They are low-speed devices.
by jwick
Fri Apr 04, 2008 3:11 pm
Forum: Windows Discussion Forum
Topic: New problem after 1 year of success
Replies: 4
Views: 6636

Have you installed anything recently that may run in the background. It sounds like the driver isn't getting timely access to the USB port when it is running in the background (as opposed to when you bring the GUI to the foreground). Guilty parties may be virus software updates, any sort of logging ...
by jwick
Fri Apr 04, 2008 9:39 am
Forum: Developer's Forum for Windows
Topic: Cursor controlled by Space Navigator
Replies: 3
Views: 8247

You should be able to google it.
The function is in user32.dll.
The declaration is in winuser.h.
by jwick
Fri Apr 04, 2008 9:11 am
Forum: Developer's Forum for Windows
Topic: Cursor controlled by Space Navigator
Replies: 3
Views: 8247

There is a Win32 API function called SendInput that may work.
by jwick
Fri Apr 04, 2008 6:26 am
Forum: Windows Discussion Forum
Topic: Problem with SpaceNavigator in Poser 7.0.2: unresponsive UI
Replies: 6
Views: 7963

Reading through the CP support forum thread, to me this looks like the device is still generating data, thus preventing poser from switching modes. As someone on that forum said, "it is very sensitive". Try creating the following registry entry: HKCU/software/3dconnexion/3dxware/DeadBand I...
by jwick
Fri Apr 04, 2008 6:05 am
Forum: Developer's Forum for Windows
Topic: DirectInput Programming Examples
Replies: 45
Views: 102280

Express doesn't have support for ATL and MFC (Microsoft's limitation), but we believe that you can download the entire MS SDK (with all options) to add these headers and libraries. If you have access to the full VS 2005/8 you should use that.