When I click on my label, the drag box comes up but when I release it the label stays in the original place, help !
Printable View
When I click on my label, the drag box comes up but when I release it the label stays in the original place, help !
You must have some code in the DragDrop propert of the where ever you want to drop it.
Put this code in the DragDrop propert of your form
Code:Private Sub Form_DragDrop(Source As Control, X As Single, Y As Single)
Source.Move X, Y
End Sub