Jag har ett litet problem. Jag har en handkontroll som jag vill kunna använda i ett program. Jag har lyckats snappa upp vilken knapp man trycker på och så men problemet är att när programmet inte är aktivt, alltså inte markerat så fungerar de inte.DirectInput Hjälp!
Programmet fungerar alltså som jag vill bara de att programmet inte snappar upp knapptryckningar på spelkontrollen om inte mitt program är aktivt.
Jag använder mig av ett exempel som följer med DirectX 9 SDK.
koden jag tror felet är i ser ut såhär:
<code>
Public Sub GetData()
' Make sure there is a valid device.
If Nothing Is applicationDevice Then
Return
End If
Try
' Poll the device for info.
applicationDevice.Poll()
Catch inputex As InputException
If TypeOf inputex Is NotAcquiredException Or TypeOf inputex Is InputLostException Then
' Check to see if either the app
' needs to acquire the device, or
' if the app lost the device to another
' process.
Try
' Acquire the device.
applicationDevice.Acquire()
Catch
' Failed to acquire the device.
' This could be because the app
' doesn't have focus.
Return
End Try
End If
End Try
'catch(InputException inputex)
' Get the state of the device.
Try
state = applicationDevice.CurrentJoystickState
' Catch any exceptions. None will be handled here,
' any device re-aquisition will be handled above.
Catch
Return
End Try
UpdateUI()
End Sub 'GetData
</code>
Det verkar som den inte kan köra Poll om inte programmet är aktivt.
Hoppas någon här kan hjälpa eller ge en vägledning på hur jag ska lösa problemet
Tack på förhand