Moving the non active windows

Post questions, comments and feedback to our 3Dconnexion Windows Development Team.

Moderator: Moderators

Post Reply
peppebck
Posts: 2
Joined: Tue Nov 25, 2014 3:11 am

Moving the non active windows

Post by peppebck »

Monring everybody.
I'm developing a cad application.
Using my spacenavigator also my model on NX (CAD applicatoin) moves (NX is not the active window).
On my machine it happens only for about 1 second then it works properly. On an other machine it continues to move both windows.
I've seen a post saying that latest driver would fix this problem but it doesn't work for me.

here's my code:

protected override void WndProc(ref Message message)
{
// Text = (count++)+"";

if (id != null)
{
if (id._3d.ProcessMessage(message))
{
if( rendernow)
Render();
return;
}
}
......<other checks>
base.WndProc(ref message);
}

Regards.
Post Reply