public void OnFlightPlanReceived(object sender, FlightPlanReceivedEventArgs e)
 {
     NewFlightPlan(e.FlightPlan);
     mConfig.LastFlightPlan = e.FlightPlan;
     MessageBox.Show(this, "Pre-filed flight plan successfully retrieved from the server.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
 }
 public void OnRemoteFlightPlanReceived(object sender, FlightPlanReceivedEventArgs e)
 {
     ProcessRemoteFlightPlan(e.FlightPlan);
 }