29)Write a VB program for dragging and dropping multiple objects. (Take two command buttons RESET and EXIT, and four image controls). When user click on reset button then all images will go to original position
Option Explicit
Private Sub Command1_Click()
For i = 1 To 4
Image1(i).Visible = True
Next
End Sub
Private Sub Command1_DragDrop(Source As Control, X As Single, Y As Single)
BadDrop Source
End Sub