I have some questions:
First one, in the Fs-Interrogate2std in this case Pause Flag it says:
Addr: 0264
Field-Name: Pause Flag
Var.Type: S16
Size: 2
Read/Write: Read(only )
Category: Simulation
Expression: #
Usage: 0=Running, 1=Paused
then in the code we have to write this:
Dim pause As Offset(Of Short) = New FSUIPC.Offser(Of Short)(&H264)
so what is actually the &H264? I mean the 264 its the Addr and the &H where did it came from?
Second, lets see if this is correct and what i would like somebody to explain me
Addr its like the "name" of the information we want to know and we and to put it in the code.
Field-Name Its The name.
Var. Type i Would like to know what is it
Size its the max number off characters that cames on the FSUIPC response.
Read/Write its if that information can be only Read or Write or Both.
Category its the Category....
Expression I would like to know what is it..
Usage its the type off response that the FSUIPC give us.
And to end in this code:
Dim AircraftName As Offset(Of String) = New FSUIPC.Offset(Of String)("AircraftInfo", &H3160, 24)
in this what is actually the 24 and the "AircraftInfo" means something or if I want a can change it for ex. to "Plane" it will still works?
Thanks