Пример #1
0
 private void btnPesquisar_Click(object sender, EventArgs e)
 {
     if (txtPlaca.Text.Length > 0)
     {
         PesquisarPlaca(txtPlaca.Text);
     }
     else if (txtPlaca.Text.Length == 0)
     {
         Pesquisar.MostrarMovtoPlaca();
         txtSeqmovto.Text = Properties.Settings.Default.sequencia;
     }
 }
Пример #2
0
 private void txtPlaca_KeyPress(object sender, KeyPressEventArgs e)
 {
     if (e.KeyChar == (char)Keys.Return && txtPlaca.Text.Length > 0)
     {
         PesquisarPlaca(txtPlaca.Text);
     }
     else if (e.KeyChar == (char)Keys.Return && txtPlaca.Text.Length == 0)
     {
         Pesquisar.MostrarMovtoPlaca();
         txtSeqmovto.Text = Properties.Settings.Default.sequencia;
     }
     txtSeqmodelo.Focus();
 }