Example #1
0
        private void vehiculosToolStripMenuItem_Click(object sender, EventArgs e)
        {
            MantenimientoVehiculos rc = new MantenimientoVehiculos();

            rc.MdiParent = this;
            rc.Show();
        }
Example #2
0
        private void btnVehiculo_Click(object sender, EventArgs e)
        {
            MantenimientoVehiculos rc = new MantenimientoVehiculos();

            rc.btnBorrar.Enabled      = false;
            rc.btnModificar.Enabled   = false;
            rc.btnSeleccionar.Enabled = true;
            rc.transporte             = true;
            rc.ShowDialog();
            tbxVehiculo.Text = rc.matricula;
        }
Example #3
0
        private void btnSeleccionarMatricula_Click(object sender, EventArgs e)
        {
            MantenimientoVehiculos rc = new MantenimientoVehiculos();

            rc.btnBorrar.Enabled      = false;
            rc.btnModificar.Enabled   = false;
            rc.btnSeleccionar.Enabled = true;
            //rc.transporte = true;
            rc.ShowDialog();
            tbxMatricula.Text = rc.matricula;
            //idTaller = rc.codigo_taller;
        }