private void btnEliminar_Click(object sender, EventArgs e)
        {
            Int32 selectedRowCount = dataAsuntos.Rows.GetRowCount(DataGridViewElementStates.Selected);

            if (selectedRowCount != 1)
            {
                var form = new frmAlert(this, "Seleccionar asunto", "Debe seleccionar un asunto para eliminar", "close");
                form.Show();
                return;
            }
            int id    = Convert.ToInt32(this.dataAsuntos.SelectedRows[0].Cells[2].Value);
            var form3 = new frmAlert(this, "Eliminar", "¿Está seguro que desea eliminar el asunto?", "yesno");

            form3.Show();
        }
        private void btnModificar_Click(object sender, EventArgs e)
        {
            Int32 selectedRowCount = dataAsuntos.Rows.GetRowCount(DataGridViewElementStates.Selected);

            if (selectedRowCount != 1)
            {
                var form2 = new frmAlert(this, "Seleccionar asunto", "Debe seleccionar un asunto para modificar", "close");
                form2.Show();
                return;
            }
            int          id   = Convert.ToInt32(this.dataAsuntos.SelectedRows[0].Cells[2].Value);
            var          form = new asunto_new_update(id, this);
            DialogResult vr   = form.ShowDialog(this);

            if (vr == System.Windows.Forms.DialogResult.OK)
            {
                this.actualizarAsuntos();
            }
        }
        private void btnModificar_Click(object sender, EventArgs e)
        {
            Int32 selectedRowCount = dataMensajes.Rows.GetRowCount(DataGridViewElementStates.Selected);

            if (selectedRowCount < 1)
            {
                var form2 = new frmAlert(this, "Seleccionar mensaje", "Debe seleccionar un mensaje para eliminar", "close");
                form2.Show();
                return;
            }
            int          id   = Convert.ToInt32(this.dataMensajes.SelectedRows[0].Cells[2].Value);
            var          form = new mensaje_new_update(id, this);
            DialogResult vr   = form.ShowDialog(this);

            if (vr == System.Windows.Forms.DialogResult.OK)
            {
                this.handlePaginacion();
            }
        }
Example #4
0
        private void Form1_Load(object sender, EventArgs e)
        {
            this.Opacity = 100;

            Cargando carg = new Cargando();

            carg.Ejecutar();

            recibidos = true;
            try {
                pagActual = 1;
                btnRecibidos_Click(null, e);
                carg.Detener();
            } catch {
                carg.Detener();
                this.Opacity = 0;

                new iniciar_sesion.iniciar_sesion().Show();
                var form2 = new frmAlert(this, "Error", "Hubo un inconveniente técnico.\n Vuelva a intentarlo más tarde.", "close");
                form2.Show();

                return;
            }
        }
Example #5
0
        private void btnEliminar_Click(object sender, EventArgs e)
        {
            var form = new frmAlert(this, "Eliminar", "¿Está seguro que desea eliminar el mail?", "yesno");

            form.Show();
        }