private void buttonSeleccionarFechaReinicioServicio_Click(object sender, EventArgs e)
        {
            this.textBoxParam = textBoxFechaReinicioServicio;
            SeleccionarFecha seleccionarFecha = new SeleccionarFecha(textBoxParam);

            seleccionarFecha.Show();
        }
        private void buttonSeleccionarFechaBajaDefinitiva_Click(object sender, EventArgs e)
        {
            this.textBoxParam = textBoxFechaBajaDefinitiva;
            SeleccionarFecha seleccionarFecha = new SeleccionarFecha(textBoxParam);

            seleccionarFecha.Show();
        }
Пример #3
0
        private void buttonSeleccionar_Click(object sender, EventArgs e)
        {
            SeleccionarFecha seleccionarFecha = new SeleccionarFecha(textBoxFechaReinicioServicio);

            seleccionarFecha.Show();
        }