AerolineaFrba.Generacion_Viaje.Form1.seSeleccionoRuta C# (CSharp) Method

seSeleccionoRuta() public method

public seSeleccionoRuta ( System.Windows.Forms.DataGridViewRow registro ) : void
registro System.Windows.Forms.DataGridViewRow
return void
        public void seSeleccionoRuta(DataGridViewRow registro)
        {
            button5.Enabled = true;
            txtMatricula.Text = "";
            txtRuta.Text = registro.Cells["Id"].Value.ToString();
            this.listadoAeronaves.serv_cod = registro.Cells["Codigo Serv"].Value.ToString();
        }