Ver Mensaje Individual
  #4 (permalink)  
Antiguo 06/08/2005, 10:09
Avatar de David
David
Moderador
 
Fecha de Ingreso: abril-2005
Ubicación: In this planet
Mensajes: 15.720
Antigüedad: 19 años, 1 mes
Puntos: 839
De acuerdo

Esto tal vez te sirva:
Código:
Private Sub Picture1_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button <> 1 Then Exit Sub
Picture1.CurrentX = X
Picture1.CurrentY = Y
End Sub
Private Sub Picture1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button <> 1 Then Exit Sub
Picture1.Left = X + Abs(Picture1.Left - Picture1.CurrentX)
Picture1.Top = Y + Abs(Picture1.Top - Picture1.CurrentY)
End Sub
Private Sub Picture1_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
If Button <> 1 Then Exit Sub
On Error Resume Next
Width = Picture1.Left + Picture1.Width
Height = Picture1.Top + Picture1.Height
End Sub
Necesitarás un PictureBox que servirá como modificador de Tamaño, de preferencia, colocalo en la esquina inferior derecha del Form....
Nos vemos
__________________
Por favor, antes de preguntar, revisa la Guía para realizar preguntas.