Ejemplo n.º 1
0
 private void CuitTB_Validated(object sender, EventArgs e)
 {
     if (CuitTB.Text.Trim() == "")
     {
         ProveedorEP.SetError(CuitTB, "Ingrese el CUIT...");
         CuitTB.Focus();
     }
 }
Ejemplo n.º 2
0
 private void RaSoTB_Validated(object sender, EventArgs e)
 {
     if (RaSoTB.Text.Trim() == "")
     {
         ProveedorEP.SetError(RaSoTB, "Ingrese la Razón social...");
         RaSoTB.Focus();
     }
 }