Quote:
Originally posted by Alien_poo
How can I drag an image over another, so it just kind of "gives" it's picture to the one it's dragged on (and then it comes back to it's original position, but with nothing in it, since it gave the picture that was in it to the other one)... I don't know if you get what I'm saying....
I think I do...
VB Code:
Private Sub Form_Load()
Picture2.DragMode = vbAutomatic
Picture3.DragMode = vbAutomatic
End Sub
Private Sub Picture1_DragOver(Source As Control, X As Single, Y As Single, State As Integer)
If Source.Picture = 0 Then Exit Sub
Picture1.Picture = Source.Picture
Source.Picture = Nothing
End Sub