Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/09/2009, 14:27
Avatar de pkj
pkj
 
Fecha de Ingreso: julio-2006
Ubicación: Órbita sincrónica
Mensajes: 899
Antigüedad: 17 años, 9 meses
Puntos: 29
Respuesta: Mostrar RichTextBox en bloques de 6 lineas desde un boton

La forma mas sencilla que se me ocurre es:

Private Sub Avanzar()
RichTextBox1.SetFocus
SendKeys "{PGDN}"
End Sub

Private Sub Retroceder()
RichTextBox1.SetFocus
SendKeys "{PGUP}"
End Sub

Saludos