private void btnReporte_Click(object sender, EventArgs e)
        {
            VentanaReporte ventanareporte = new VentanaReporte();

            ventanareporte.Show();
            this.SetVisibleCore(false);
        }
 public VentanaReporteEditar(VentanaReporte padre, string id)
 {
     this.padre = padre;
     InitializeComponent();
     // TODO: Complete member initialization
     this.id   = id;
     this.Text = "ID: " + id;
     carga_datos();
     txtFecha.Format       = DateTimePickerFormat.Custom;
     txtFecha.CustomFormat = "yyyy-MM-dd";
 }
Esempio n. 3
0
        public VentanaReporteEliminar(VentanaReporte padre, string id)
        {
            this.padre = padre;

            this.id = id;

            DialogResult resultado = MessageBox.Show("¿Realmende desea Eliminar Reporte", "AVISO", MessageBoxButtons.YesNo, MessageBoxIcon.Question);

            if (resultado == DialogResult.No)
            {
                return;
            }
            this.carga_Contacto();
        }