• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

VB.net problem with Quit handler

Messages
39
Country
france
Hi every one,
i'm new on this forum and start developping a solution with Simconnect and VB.net
I encounter a problem with the RecvQuitEventHandler instruction
her is the code which cause problem:
'this line is in the code of a click button function
AddHandler fsx_simconnect.OnRecvQuit, New SimConnect.RecvQuitEventHandler(AddressOf fsx_simconnect_OnRecvQuit)

then i have another function

Sub fsx_simconnect_OnRecvQuit(ByVal sender As SimConnect, ByVal data As SIMCONNECT_RECV)

but i have an error
'SIMCONNECT_RECV' is not accessible in this context, cause it is 'Private'.


Can i have any suggestion or explanation to solve this problem

thank's for your help
 
Could be anything.

You might want to fully qualify your class to
Code:
Microsoft.FlightSimulator.SimConnect.SIMCONNECT_RECV

Without seeing more code it's impossible to determine the real cause though.

Code:
Sub fsx_simconnect_OnRecvQuit(ByVal sender As SimConnect, ByVal data As Microsoft.FlightSimulator.SimConnect.SIMCONNECT_RECV)
 
[solved]

Well, sorry nudge...:o
you were right...i was thinking of what you've wrote...then i wen watching the Vb.net example of the SDK and there was this syntax and no errors at all...so i went in my code, and modified it to try...and of course it worked...strange that we have to qualify it fully because other handlers like the one to open don't need to qualify fully RECV_OPEN...

Thank's at all
 
Back
Top