Ver Mensaje Individual
  #2 (permalink)  
Antiguo 28/07/2010, 09:07
Avatar de gedarufi
gedarufi
 
Fecha de Ingreso: diciembre-2008
Ubicación: Colombia
Mensajes: 540
Antigüedad: 16 años, 3 meses
Puntos: 22
Respuesta: [c#]Ejecutar al Completar caracteres

Puedes hacerlo asi

Código C#:
Ver original
  1. private void txtnumshipper_KeyPress(object sender, KeyPressEventArgs e)
  2.         {
  3.             if (txtnumshipper.Text.Length == 8 && e.KeyChar == '\r')
  4.             {
  5.                      <...................>
  6.              }
  7.  
  8.         }

Saludos