Esempio n. 1
0
 private void btnListEkle_Click(object sender, EventArgs e)
 {
     if (!String.IsNullOrEmpty(txtListEkle.Text))
     {
         if (TextValidate.IsValidEmail(txtListEkle.Text))
         {
             listGonderilecekAdresler.Items.Add(txtListEkle.Text);
             txtListEkle.Text = "";
         }
     }
 }
Esempio n. 2
0
 private void decimalValidate(object sender, KeyPressEventArgs e)
 {
     TextValidate.forceForDecimal(sender, e);
 }
Esempio n. 3
0
 private void checkIsTel(object sender, KeyPressEventArgs e)
 {
     TextValidate.forceForNumericWithSpace(sender, e);
 }
Esempio n. 4
0
 private void txtMiktar_KeyPress(object sender, KeyPressEventArgs e)
 {
     TextValidate.forceForDecimal(sender, e);
 }
Esempio n. 5
0
 private void txtVergiNo_KeyPress(object sender, KeyPressEventArgs e)
 {
     TextValidate.forceForNumericWithDot(sender, e);
 }
Esempio n. 6
0
 private void txtTcKimlik_KeyPress(object sender, KeyPressEventArgs e)
 {
     TextValidate.tcKimlikValidate(sender, e);
 }