private void RendicionCuentas_Click(object sender, EventArgs e) { Rendicion_Viajes.RendicionViajes rendicion = new Rendicion_Viajes.RendicionViajes(this); visibilidad = false; this.Hide(); rendicion.Show(); }
public HistorialDeViajes(DataGridViewRow fila, RendicionViajes rendicion) //Carga variables con los datos traidos del dataGrid en RendicionViajes { InitializeComponent(); this.rendicion = rendicion; bd = new BaseDeDatos(); conexion = bd.getCon(); textBox2.Text = porcentajeACobrar.ToString(); //porcentaje base chofer_Username = fila.Cells[0].Value.ToString(); Turno_Descripcion = fila.Cells[1].Value.ToString(); fecha = fila.Cells[2].Value.ToString(); }