737SimGuy Posted October 14, 2003 Report Posted October 14, 2003 Hi Pete, I am trying to access the NWI via Visual Basic. I have registered versions of FSUIPC and WideFS. I can't seem to get any data. Only tried Area 0 and 1 so far. My question: Do I need a special access code, or should it be accessable now? Thanks, James
737SimGuy Posted October 14, 2003 Author Report Posted October 14, 2003 Pete, Further to my last... When I attempt to read a NWI offset individually the log shows an "8F" added to the front of the read. Here is the log entry for reading "uDynamics" in Area 0 i.e. C40C: 2128160 READ0 8FC40C, 1 bytes: 00 I am debugging here trying to figure what I may be doing wrong. Other non NWI reads work fine. Any ideas? FSUPIC 3.11 James
Pete Dowson Posted October 14, 2003 Report Posted October 14, 2003 When I attempt to read a NWI offset individually the log shows an "8F" added to the front of the read. Here is the log entry for reading "uDynamics" in Area 0 i.e. C40C: 2128160 READ0 8FC40C, 1 bytes: 00 I don't know why the Visual Basic programming books are so awful, because everyone asks the same question. It seems Visual Basic sign extends any hexadecial value, so your "C40C" becomes "FFFFC40C". FSUIPC uses the top 16 bits as flags for assorted operations to do with WideFS and the AWI. It masks out the bits that it likes and this results in your 8F. According to other VB programmers (and, I would hope, the VB programming books?) you have to post-pend another & to stop sign extension: &HC40C& I would have thought that specifying it as &H0000C40C would be specific enough, but no, the stupid compiler thinks it knows better and changes it to &HFFFFC40C, apparently without even mentioning it to you! I have lost count how many times I've had to repeat this stuff, there must be many mentions already in this Forum. Regards, Pete
737SimGuy Posted October 14, 2003 Author Report Posted October 14, 2003 Hi Pete, I've read many books on VB cover to cover, and as reference, and have been aware of the VB style coercing, but have never ever had this problem before with FSUIPC stuff. My appologies for not gleaming it from the hundreds of messages here on the forum. Thanks for the info, I will give it a go... James
737SimGuy Posted October 14, 2003 Author Report Posted October 14, 2003 Pete, >>>you have to post-pend another & to stop sign extension: Yes, of course, that did the trick... Thank you, James
Pete Dowson Posted October 14, 2003 Report Posted October 14, 2003 I've read many books on VB cover to cover, and as reference, and have been aware of the VB style coercing Ah, I'm glad it is documented! I did wonder. It seems quite bad having a language where even a value explicitly declared as &H00008000 is converted to &HFFFF8000 with no warnings, nothing. How did this slip into Microsoft's design I wonder? but have never ever had this problem before with FSUIPC stuff. My appologies for not gleaming it from the hundreds of messages here on the forum. No need to apologise. I suppose there ought to be a warning in the VB part of the FSUIPC SDK, but the individual parts aren't really mine, and not knowing anything about VB I am reluctant to interfere with what is already written. 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