private void referenciaLostFocus(object sender, RoutedEventArgs e) { string confnum = string.Empty; string tmpRef = string.Empty; if (st_capt_tel_imp == "1" || st_capt_tel_imp == "2") { if (txtReferencia.Text.Length < 10) { return; } tmpRef = string.Empty; tmpRef = txtReferencia.Text; txtReferencia.Text = "**********"; frmConfirmaTel confirma = new frmConfirmaTel(); confirma.ShowDialog(); confnum = confirma.GetConfirmacionTel(); if (confnum != tmpRef) { Globales.MessageBoxMit("El número no concide vuelva a ingresarlo"); txtReferencia.Text = tmpRef; return; } txtReferencia.Text = tmpRef; } txtReferencia.Text = tmpRef; }
private void txtReferencia_LostFocus(object sender, RoutedEventArgs e) { if (st_capt_tel_imp == "1" || st_capt_tel_imp == "2") { if (txtReferencia.Text.Length < 10) { Globales.MessageBoxMit("La longitus debe ser mayor de 10 dígitos"); return; } string tmpRef = ""; tmpRef = txtReferencia.Text; frmConfirmaTel confirma = new frmConfirmaTel(); confirma.ShowDialog(); string confnum = confirma.GetConfirmacionTel(); if (confnum != tmpRef) { Globales.MessageBoxMit("El número no concide vuelva a ingresarlo"); txtReferencia.Text = tmpRef; txtReferencia.Focus(); return; } txtReferencia.Text = tmpRef; } txtReferencia.Text = txtReferencia.Text.ToUpper().Trim(); }