/// <summary>
 ///
 /// </summary>
 /// <param name="d"></param>
 public void RecreoInvoke(string d)
 {
     if (lblRecreo.InvokeRequired)
     {
         DMensaje recreo = new DMensaje(RecreoInvoke);
         this.Invoke(recreo, new object[] { d });
     }
     else
     {
         lblRecreo.Text = d;
     }
 }
Beispiel #2
0
 public void EvalInvoke3(string nota)
 {
     if (txtNota.InvokeRequired)
     {
         DMensaje miNota = new DMensaje(EvalInvoke3);
         this.Invoke(miNota, new object[] { nota });
     }
     else
     {
         txtNota.Text = nota;
     }
 }
Beispiel #3
0
 public void EvalInvoke4(string d)
 {
     if (txtProfesor.InvokeRequired)
     {
         DMensaje miNota = new DMensaje(EvalInvoke4);
         this.Invoke(miNota, new object[] { d });
     }
     else
     {
         txtProfesor.Text = d;
     }
 }
Beispiel #4
0
 public void EvalInvoke2(string mje)
 {
     if (txtAlumno.InvokeRequired)
     {
         DMensaje miAlumno = new DMensaje(EvalInvoke2);
         this.Invoke(miAlumno, new object[] { mje });
     }
     else
     {
         txtAlumno.Text = mje;
     }
 }