
sniperfull
Members-
Posts
17 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Gallery
Downloads
Everything posted by sniperfull
-
I've just used Offset 3124 and P3D V3.4 returns 0 ? any way around that? because i need the specific version of p3d ....
-
Qualitywings 787 not recognized as aircraft...
sniperfull replied to sniperfull's topic in FSUIPC Client DLL for .NET
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 -
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
-
What about the HDG going over 360 Degrees?
-
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" & "°")
-
actually sorry looked in the Offset status PDF and 3124 is for fs versions
-
Well in fs Interrogate 3124 is showing up as Electric Always available (FS2002 only)
-
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
-
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
-
Question - How does FSUIPC actually autosave?
sniperfull replied to sniperfull's topic in FSUIPC Support Pete Dowson Modules
Does it use simconnect then as its 'asking' fsx/p3d to save the situation? -
vb.net FSUIPC sending keypresses to sim
sniperfull replied to sniperfull's topic in FSUIPC Client DLL for .NET
What about when the sim is minimized from what i've tested is that it doesnt seem to work? Sniperfull. -
vb.net FSUIPC sending keypresses to sim
sniperfull replied to sniperfull's topic in FSUIPC Client DLL for .NET
Thanks I will take a look at that this weekend thanks -
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?