Ver Mensaje Individual
  #5 (permalink)  
Antiguo 22/12/2008, 09:16
spiderman78
 
Fecha de Ingreso: abril-2008
Mensajes: 281
Antigüedad: 16 años, 1 mes
Puntos: 1
Respuesta: formato mayusculas

Cita:
Iniciado por Judgement Ver Mensaje
Saludos, una forma rapida de lograrlo seria:

Código:
Private Sub Text1_KeyPress(KeyAscii As Integer)
    If (KeyAscii >= 97) And (KeyAscii <= 122) Then
        KeyAscii = KeyAscii - 32
    End If
End Sub
Espero que te sea de utilidad
Si me funciono perfectamente bien, solo una pregunta como puedo hacerle cuando son textbox indexados, ojala me pudieran orientar..... gracias


saludos