Ejemplo n.º 1
0
 private void btnAgregarNueva_Click(object sender, EventArgs e)
 {
     if (txtNombreTarea.Text != "")
     {
         DataSourcePOI dsp = new DataSourcePOI();
         bool agregado = dsp.insertTarea(txtNombreTarea.Text, idGrupo);
         if (agregado)
             pnlAdd.Visible = false;
         FG fg = new FG();
         fg.tareas(id, idGrupo, tareas, flp);
     }
 }