Jump to content
The simFlight Network Forums

A320_Pilot

Members
  • Posts

    58
  • Joined

  • Last visited

Contact Methods

  • ICQ
    848120
  • Skype
    gosha.kvs

Profile Information

  • Gender
    Male
  • Location
    Russian Federation, Moscow
  • Interests
    Civil aviation

A320_Pilot's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Why is it still does not connect with the simulator, the parking brake is on, but no result!
  2. Where is my error? private void openFSUIPC() { //---------------------------------------------------------------------------------// try { //---------------------------------------------------------------------------------// //Ckeck parking brake //---------------------------------------------------------------------------------// if (PBrake.Value == 1) { MessageBox.Show(CLIENT_MSG18_RU, AUTH_ERR0_RU, MessageBoxButtons.OK, MessageBoxIcon.Exclamation); FSUIPCConnection.Open(); this.startfl.Enabled = false; this.endfl.Enabled = true; this.timer1.Interval = 200; this.timer1.Enabled = true; this.connect_m.Text = (FSUIPC_MSG2_RU); } //---------------------------------------------------------------------------------// else //---------------------------------------------------------------------------------// { FSUIPCConnection.Close(); this.startfl.Enabled = true; this.endfl.Enabled = false; this.connect_m.Text = (FSUIPC_MSG1_RU); } //---------------------------------------------------------------------------------// } //---------------------------------------------------------------------------------// catch (Exception ex) { MessageBox.Show(ex.Message, FSUIPC_ERR0_RU, MessageBoxButtons.OK, MessageBoxIcon.Error); } //---------------------------------------------------------------------------------// }
  3. Base airports made, and here's the code to C # can not write (((
  4. Hello Paul! I still do not understand how to be a database, how to extract from them ICAO codes and how to measure the distance between the two airports (((( Help me please!!!
  5. While I still like this: private void start_fuel_Click(object sender, EventArgs e) { try { PayloadServices ps = FSUIPCConnection.PayloadServices; ps.RefreshData(); //---------------------------------------------------------------------------------// //Refueling aircraft and start the flight //---------------------------------------------------------------------------------// string external1 = external1_m.Text; string external2 = external2_m.Text; string center = center_m.Text; string center2 = center2_m.Text; string center3 = center3_m.Text; string left_main = left_main_m.Text; string right_main = right_main_m.Text; string left_aux = left_aux_m.Text; string right_aux = right_aux_m.Text; string left_tip = left_tip_m.Text; string right_tip = right_tip_m.Text; //---------------------------------------------------------------------------------// foreach (FsPayloadStation payloadStation in ps.PayloadStations) { payloadStation.WeightLbs = 0; } ps.WriteChanges(); } catch (Exception ex) { MessageBox.Show(ex.Message, FSUIPC_ERR0_RU, MessageBoxButtons.OK, MessageBoxIcon.Error); } //---------------------------------------------------------------------------------//
  6. I just do not understand what to do with this: foreach (FsPayloadStation payloadStation in ps.PayloadStations) { payloadStation.WeightLbs = 0; }
  7. Ok, Paul And what offset responsible for refueling aircraft?
  8. Paul, help please, where is a error? double simrate = ((double)simrate.Value / 256d); this.usk_m.Text = simrate.ToString("F0");
  9. private Offset<short> simrate = new Offset<short>(0x0C1A); Correct?
  10. Hello Paul! Modest question: what offset is responsible for the acceleration in the simulator, well that display there "x1, x4" and so on? Thanks
×
×
  • 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.