doia Posted April 14, 2010 Report Posted April 14, 2010 Hey Peter, This is a programming related question rather than FSUIPC specific. I need to write an application that accesses flight data from a buffer. I noticed that FSUIPC allows multiple processes to request FSX data at the same time and they magically don't interfere with each other I am having a hard time doing that (after one process is already open all additional processes won't run) could you please point me in the right direction or give me some tips? Any help is much appreciated! Cheers
Pete Dowson Posted April 14, 2010 Report Posted April 14, 2010 This is a programming related question rather than FSUIPC specific. I need to write an application that accesses flight data from a buffer. I noticed that FSUIPC allows multiple processes to request FSX data at the same time and they magically don't interfere with each other This is only because the process requesting data does it by sending a message. That goes into Windows' message queue, and FSUIPC gets to it in turn. There's certainly nothing really clever in that. I am having a hard time doing that (after one process is already open all additional processes won't run) could you please point me in the right direction or give me some tips? Any help is much appreciated! Sorry, I can't really advise on so little information. If you are processing requests via one channel you need a way of queuing things. I leave that problem to Windows. Regards Pete
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now