Ver Mensaje Individual
  #4 (permalink)  
Antiguo 24/05/2006, 23:23
bubilo
 
Fecha de Ingreso: septiembre-2005
Mensajes: 76
Antigüedad: 18 años, 7 meses
Puntos: 0
Private Sub tnombre_KeyPress(KeyAscii As Integer)
If KeyAscii = 32 Then
Dim buby As Variant
Dim temp As String
Dim final As String
buby = Split(tnombre.Text)
For x = 0 To UBound(buby)
temp = Left(buby(x), 1)
temp = UCase(temp) & LCase(Mid(buby(x), 2, Len(buby(x))))
final = final & " " & temp
Next x
tnombre.Text = Trim(final)
tnombre.SelStart = Len(final)
End If
End Sub
__________________
Buby Systems