Jump to content
The simFlight Network Forums

sniperfull

Members
  • Posts

    17
  • Joined

  • Last visited

Everything posted by sniperfull

  1. I've just used Offset 3124 and P3D V3.4 returns 0 ? any way around that? because i need the specific version of p3d ....
  2. Where did you sir find that offset i looked in FS-Interrogate 2 but couldnt find anything. and how would i switch it on or off ? is it like 0 = off 1= on ? Thanks for the reply Kuba
  3. Is it possible to switch on or off seatbelt signs using FSUIPC? i had a idea with the seatbelts and the Turbulance offset . kuba
  4. Ahh! so apparently qualitywings decided not to enter anything there exept for "Category=airplane" ....... that explains my problem Thank you kuba EDIT i havent tested this yet as i am in flight ... if it does update inflight there must be another issue but if it does not update inflight then i will test it later
  5. now that the Qualitywings 787 is out i am doing some flying in it and i noticed that my program is not recognizing the 787 as an aircraft... 'offset Dim aircraftType As Offset(Of String) = New FSUIPC.Offset(Of String)("AircraftType", &H3500, 24) ' and under a timer Try FSUIPCConnection.Process("AircraftType") lblAircraft.Text = aircraftType.Value Catch ex As Exception MessageBox.Show(ex.Message, AppTitle, MessageBoxButtons.OK, MessageBoxIcon.Error) End Try http://prntscr.com/gxet22
  6. i've just noticed a "bug" in my program as the heading value goes above 360 .... and its sometimes in accurate by a couple of degrees here's my code: Dim HDG As Offset(Of Integer) = New FSUIPC.Offset(Of Integer)(&H580) ' aircraft heading Dim Heading As Double = (HDG.Value * 360 / 65536 * 65536) TxtHDG.Text = Heading.ToString("0" & "°")
  7. actually sorry looked in the Offset status PDF and 3124 is for fs versions
  8. Well in fs Interrogate 3124 is showing up as Electric Always available (FS2002 only)
  9. whats the difference between (Of Short) and (of UShort) ? and would 11 be P3D V3 or is 10 for P3D v1/2/3? And It has fixed the issue thanks so much
  10. Hi i am coding in VB.net and want to add current FS version that is connected and im struggeling to get it working what i have sofar : Dim SimVers As Offset(Of Integer) = New FSUIPC.Offset(Of Integer)(&H308) ' Shows what sim its connected to and then on a timer i have : LblSimVers.Text = SimVers.Value and it displays : 655294464 when on P3D v4 when the documentation says it should return numbers 1 thrue 10 1=FS98, 2=FS2K, 3=CFS2, 4=CFS1, 5=reserved, 6=FS2002, 7=FS2004, 8=FSX, 9=ESP, 10=P3D
  11. Does it use simconnect then as its 'asking' fsx/p3d to save the situation?
  12. i was just wondering on how fsuipc does the autosave... Does fsuipc make their own .fxml and .wx file and write the data from the sim into those files ... or does FSUIPC send code to the sim to make those files ?
  13. What about when the sim is minimized from what i've tested is that it doesnt seem to work? Sniperfull.
  14. Thanks I will take a look at that this weekend thanks
  15. Hi i want my program that is coded in VB.Net to send a key to p3d or fsx ... Is that atall possible with FSUIPC?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use. Guidelines Privacy Policy We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.