Exemple #1
0
        private void BtnControl_Click(object sender, EventArgs e)
        {
            ControlEstado form = new ControlEstado(this, t, tipo_usuario);

            form.Show();
            //this.Enabled = false; //Control de estado
        }
Exemple #2
0
 public DetalleControl(ControlEstado padre, int IdCotizacion, string fecha)
 {
     CheckForIllegalCrossThreadCalls = false;
     InitializeComponent();
     this.padre        = padre;
     this.IdCotizacion = IdCotizacion;
     this.fecha        = fecha;
 }