示例#1
0
 private void textBoxTarea_KeyPress(object sender, KeyPressEventArgs e)
 {
     if (e.KeyChar == (Char)Keys.Enter)
     {
         String idTarea = textBoxTarea.Text.ToString();
         if (existeTarea(idTarea))
         {
             if (idTarea.Contains("/"))
             {
                 String tareaViejo         = idTareaViejo(idTarea);
                 Tareas.FormVerTarea nueva = new FormVerTarea(this, tareaViejo);
                 nueva.ControlBox    = true;
                 nueva.WindowState   = FormWindowState.Normal;
                 nueva.StartPosition = FormStartPosition.CenterScreen;
                 nueva.Show();
             }
             else
             {
                 Tareas.FormVerTarea nueva = new FormVerTarea(this, idTarea);
                 nueva.ControlBox    = true;
                 nueva.WindowState   = FormWindowState.Normal;
                 nueva.StartPosition = FormStartPosition.CenterScreen;
                 nueva.Show();
             }
         }
         else
         {
             MessageBox.Show("La tarea " + idTarea + " no existe!");
         }
     }
 }
示例#2
0
 private void buttonNuevaTarea_Click(object sender, EventArgs e)
 {
     Tareas.FormVerTarea nueva = new FormVerTarea(this);
     nueva.ControlBox    = true;
     nueva.WindowState   = FormWindowState.Normal;
     nueva.StartPosition = FormStartPosition.CenterScreen;
     nueva.Show();
 }
        private void verTareaToolStripMenuItem_Click(object sender, EventArgs e)
        {
            if (dataGridViewGestiones.SelectedCells.Count > 0)
            {
                string idTarea = dataGridViewGestiones.SelectedRows[0].Cells["IdTarea"].Value.ToString();

                FormVerTarea nueva = new FormVerTarea(idTarea);
                nueva.Show();
            }
        }
        private void buttonDuplicar_Click(object sender, EventArgs e)
        {
            Boolean      contactos   = checkBoxContactos.Checked;
            Boolean      expedientes = checkBoxExpedientes.Checked;
            FormVerTarea nueva       = new FormVerTarea(form_anterior, idTipoTarea, fIni, descripcion, coste, acuerdoJunta, fechaActaAcordado, proximaJunta, refSiniestro, notas, importante, idEntidad, nombreComunidad, idComunidad, referencia, idTarea, contactos, expedientes, tipoTarea);

            nueva.ControlBox    = true;
            nueva.WindowState   = FormWindowState.Normal;
            nueva.StartPosition = FormStartPosition.CenterScreen;
            nueva.Show();
            this.Close();
        }
示例#5
0
        private void dataGridView_tareas_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            if (e.RowIndex != -1)
            {
                if (dataGridView_tareas.SelectedCells.Count > 0)
                {
                    string idTarea = dataGridView_tareas.SelectedRows[0].Cells[0].Value.ToString();

                    Tareas.FormVerTarea nueva = new FormVerTarea(this, idTarea);
                    nueva.ControlBox    = true;
                    nueva.WindowState   = FormWindowState.Normal;
                    nueva.StartPosition = FormStartPosition.CenterScreen;
                    nueva.Show();
                }
            }
        }