' mostramos 3 cambios de tamaño con pausas de 3 segundos entre ellas
Private Sub Command1_Click()
Call EscalarImagen(500, 500)
Call Pausa(3)
Call EscalarImagen(640, 480)
Call Pausa(3)
Call EscalarImagen(1024, 768)
End Sub
Private Sub EscalarImagen(ByVal Ancho As Long, ByVal Alto As Long)
With PicDestino
Call .Move(.Left, .Top, Ancho * stpx, Alto * stpY) ' cambiamos el tamaño al deseado
Call .PaintPicture(PicOculto.Picture, 0, 0, Ancho * stpx, Alto * stpY, 0, 0, PicOculto.Width, PicOculto.Height, vbSrcCopy) ' pegamos la imagen con el tamaño deseado.
End With
Me.Caption = CStr(Ancho) & " x " & CStr(Alto) ' ponemos en el título de la ventana el tamaño actual de la imagen
End Sub
' hacemos una pausa antes de seguir...
Private Sub Pausa(ByVal Segundos As Byte)
Dim tim As Single
tim = Timer
Do
DoEvents
Loop While Timer - tim < Segundos
End Sub