private void txtDescripcion_KeyPress(object sender, KeyPressEventArgs e)
 {
     Filtro.AlfanumericoSpaceComaPuntoGuion(e);
     if (e.KeyChar == (char)Keys.Enter)
     {
         btnAceptar_Click(sender, e);
     }
 }
Esempio n. 2
0
 private void txtBuscarCodigo_Cliente_KeyPress(object sender, KeyPressEventArgs e)
 {
     Filtro.AlfanumericoSpaceComaPuntoGuion(e);
 }