예제 #1
0
        private void button2_Click(object sender, EventArgs e)
        {
            ClassDetectaIdioma.DetectaIdioma();
            FrmLoanding FrmL = new FrmLoanding();

            FrmL.Show();
        }
예제 #2
0
 private void TextFrom_TextChanged(object sender, EventArgs e)
 {
     LblCountCharTf.Text = TextFrom.Text.Length + " de 200";
     if (TextFrom.Text.Length > 200)
     {
         MessageBox.Show("Limite de caractere excedido.");
     }
     if (TextFrom.Text.Length == 10)
     {
         ClassDetectaIdioma.DetectaIdioma(); return;
     }
     if (string.IsNullOrEmpty(TextFrom.Text))
     {
         CboFrom.Text = string.Empty;
     }
 }