Jump to content
The simFlight Network Forums

KeyNotFoundException in v. 2.4 vb.net


Recommended Posts

Hi, excuse my english.

I am a newbie with fsuipc and .net client, doing test with the payload services i can't go further of this error KeyNotFoundException throwed by this instruction

 Private mPayLoadServices As PayloadServices = FSUIPCConnection.PayloadServices

Any help?

Link to comment
Share on other sites

FSUIPCConnection.PayloadServices is not available until after the connection has been opened:

Private mPayLoadServices As PayloadServices;

Sub OpenFSUIPC()
    FSUIPCConnection.Open()
    mPayLoadServices = FSUIPCConnection.PayloadServices
End Sub

If that doesn't help, let me know.

 

Paul

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use. Guidelines Privacy Policy We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.