Hi, my name is Gianpaolo!
I'm trying to create a program like WeatherSet2 in visual basic .NET F2.
I'm using the Client DLL module!
It's very easy for me read data, but very difficult find weather using Area3.
I can read Lat,Lon,Icao,Signature,Wind,Temp... from this area, but only after I insert ICAO by WeatherSet2!
This is a cedo part:
...
...
Dim Signature As Offset(Of UInt32) = New FSUIPC.Offset(Of UInt32)(&HCC04)
Dim ICAO As Offset(Of String) = New FSUIPC.Offset(Of String)("Icao_Code", &HCC08, 4)
Dim Dynamic As Offset(Of UInt16) = New FSUIPC.Offset(Of UInt16)(&HCC0C)
...
...
...
...
Me.ICAO.Value = Me.TextBox2.Text 'Insert ICAO in &HCC08
Me.Signature.Value = CType(Me.TextBox1.Text, UInt32) 'Insert Signature in &HCC04
FSUIPCConnection.Process()
....
....
FSUIPCConnection.Process()
Me.TextBox4.Text = Me.Dynamic.Value
Me.TextBox3.Text = Me.WeatherLati.Value
Me.TextBox8.Text = Me.WeatherLongi.Value
Me.TextBox7.Text = Me.TimeStamp.Value
Me.TextBox6.Text = ((Me.QNH.Value) / 16).ToString("#.#")
...
...
...
But it read only the last searched by WeatherSet2.
If I insert LIBR in WeatherSet2, it will return LIRF weather.
Then when I open my program (which works with signature=0) and I insert KJFK, the output is the LIRF weather!!!
HELP ME PLEASE!!!!!!!