Exemple #1
0
        private void btnRegistrar_Click(object sender, EventArgs e)
        {
            ulong  cod;
            ushort a;
            float  prec;
            bool   validacion = ulong.TryParse(txtCódigo.Text, out cod);

            validacion &= ushort.TryParse(txtAño.Text, out a);
            validacion &= float.TryParse(txtPrecio.Text, out prec);
            CVehículo auxVeh = this.fPrinc.getVehículo();

            if (validacion == true)
            {
                auxVeh.setCódigo(cod);
                auxVeh.setMarca(txtMarca.Text);
                auxVeh.setModelo(txtModelo.Text);
                auxVeh.setAño(a);
                auxVeh.setPrecio(prec);
                this.Close();
            }
            else
            {
                MessageBox.Show("Verifique los valores introducidos", "Operación abortada");
            }
        }
Exemple #2
0
        private void frmSecundario_Load(object sender, EventArgs e)
        {
            CVehículo auxVeh = this.fPrinc.getVehículo();

            this.txtCódigo.Text = auxVeh.getCódigo().ToString();
            this.txtMarca.Text  = auxVeh.getMarca();
            this.txtModelo.Text = auxVeh.getModelo();
            this.txtAño.Text    = auxVeh.getAño().ToString();
            this.txtPrecio.Text = auxVeh.getPrecio().ToString();
        }
Exemple #3
0
 private void crearToolStripMenuItem_Click(object sender, EventArgs e)
 {
     this.vehículo = new CVehículo();
     MessageBox.Show("Vehículo creado: " + this.vehículo.darDatos(), "Informe de Creación");
 }
Exemple #4
0
 public void setVehículo(CVehículo auxVeh)
 {
     this.vehículo = auxVeh;
 }