Jump to content
The simFlight Network Forums

vgmarimon

Members
  • Posts

    22
  • Joined

  • Last visited

Everything posted by vgmarimon

  1. I only have problems with FSLABS, aerosoft, wilco, airsimmer uses this offsets perfectly...
  2. i'm only need to read value... not write....
  3. Hi Pete, some pilots of my VA are using FSLABS Airbus 320 with P3d/fsx and they report that altimeter setting ajusted in plane is not the same with 0x0330 offset value. Maybe this plane use another offset for altimeter setting?
  4. Dim flapsincrement As Offset(Of Short) = New FSUIPC.Offset(Of Short)(&H3BFA) Dim flapsindex As Offset(Of Byte) = New FSUIPC.Offset(Of Byte)(&HBFC) ' FSX Dim flapsvalue As Offset(Of Integer) = New FSUIPC.Offset(Of Integer)(&HBDC)
  5. Private Function Get_Flaps_Position() If SIM = "FSX" Or SIM = "P3D" Then Return (flapsindex.Value) Else Return (Int(flapsvalue.Value) / Int(flapsincrement.Value)) End If End Function
  6. Hi all, hi Pete, how is the best way to detect when plane is over a runway? Thx
  7. Hi, our software for tracking flights in Vueling VA made by me, i process data every 500ms... ALL VARIABLES(40 o 50) without loosing performance....
  8. I use this in a .bat file: "C:\Program Files\Microsoft\ILMerge\ilmerge.exe" infile.exe FSUIPCClient.dll MySql.Data.dll /out:fileout.exe /target:winexe /targetplatform:v4 /log:mergelog.log /ndebug This embed both FSUIPC and MYSQL DLL files into one .EXE file.
  9. Hi Pete, how realiable is offset 11B8 and 11BA for Gforce reads? Better read offset 1140 instead? Many Thx
  10. Hi, what is the offset for flaps position angle? Not position, angle... ex: 1,2,5,10.....
  11. Hi Pete this offset 0x0832 1 Crash detection: 1=Crash detection is on, 0 = off works only in fsx or all? Thx
  12. For SendControlToFS, fsuipc.process() is needed to process the order?
  13. Paul, it's possible to write a zero to switch off Autopilot on offset 0x07BC? In other hand, is there an offset for Autobrakes possition?
  14. Hi, Pete.... What can i expect if write 0 to offset 0372? Faliures? Many thx
  15. Dim msgcontrol As Offset(Of Short) = New FSUIPC.Offset(Of Short)("msg", &H32FA) Dim msg As Offset(Of String) = New FSUIPC.Offset(Of String)("msg", &H3380, 128) msg.Value = "Hello this is captain speaking" msgcontrol.Value = 5 Try FSUIPCConnection.Process("msg") Catch e As FSUIPCException End Try
  16. Hi, which offset must write to switch off an engine? In general purpose all aircrafts. Thx
  17. Then easy to translate to c#....
  18. Where's the difficulty to understand?
  19. i use this system to get real metar. Is made to get two metars as same time, icao in "origen" and "destino" Dim url1, url2 As String Dim posori1, posori2 As UInteger Dim posdes1, posdes2 As UInteger url1 = "http://www.aviationweather.gov/adds/metars/?station_ids=" url2 = "&std_trans=standard&chk_metars=on&hoursStr=most+recent+only&submitmet=Submit" Dim metarorigen, metardestino As String metarorigen = New System.Net.WebClient().DownloadString(url1 + LCase(origen) + url2) metardestino = New System.Net.WebClient().DownloadString(url1 + LCase(destino) + url2) posori1 = metarorigen.IndexOf(">" + UCase(origen)) + 1 Try posori2 = metarorigen.IndexOf("</FONT>") - 1 Catch ex As Exception posori2 = 0 End Try If posori2 > 0 Then txtMetarDep.Text = metarorigen.Substring(posori1, posori2 - posori1 + 1) posdes1 = metardestino.IndexOf(">" + UCase(destino)) + 1 Try posdes2 = metardestino.IndexOf("</FONT>") - 1 Catch ex As Exception posdes2 = 0 End Try If posdes2 > 0 Then txtMetarArr.Text = metardestino.Substring(posdes1, posdes2 - posdes1 + 1)
  20. Check trustedinstall in fsx.cfg, delete line about fsuipc
  21. Many Thx, command line better, runs fine.
  22. Hi, it's possible to embed .DLL file into .EXE in VS2013? Many Thx.
×
×
  • 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.