
19/11/2008, 12:54
|
| | Fecha de Ingreso: diciembre-2007 Ubicación: Caracas - Venezuela
Mensajes: 32
Antigüedad: 17 años, 3 meses Puntos: 1 | |
Respuesta: Vscroll y Hscroll en Visual Basic 6 Hola a todos...
Algo para tomar en cuenta....
En el codigo anterior cambien en el fraFrame.Top = x - (x * 2) POR
fraFrame.Top = fraFrame.Top - x
y ESTARAN ENCAMINADOS A LOGRAR LO QUE QUIERAN CON EL vScroll
If (vScroll.Value) Then
x = (fraFrame.Height / (vScroll.Max)) * (vScroll.Value)
fraFrame.Top = x - (x * 2)
Else
fraFrame.Top = 120
End If |