Exemplo n.º 1
0
 private void IdNumberTextBox_TextChanged(object sender, EventArgs e)
 {
     if (idNumberTextBox.Text.Trim() != "9999999999999")
     {
         CargaContacto("id_number", idNumberTextBox);
     }
     if (ConsultasSql.VerificarItemExistente("contact", "id, id_number", "id_number", "=", idNumberTextBox.Text))
     {
         IdContact = "";
         if (idNumberTextBox.Text.Trim().Length >= 10)
         {
             IdContact           = "nuevo";
             idContactLabel.Text = "** PROVEEDOR NUEVO **";
         }
         else
         {
             IdContact           = "";
             idContactLabel.Text = "";
         }
     }
     else
     {
         idContactLabel.Text = "";
     }
 }