Posting mengenai contoh operasi Drag and Drop menggunakan OLE pada VB6, Sebelum Anda mencoba kode drag and drop di bawah ini, settinglah property objek Picture1
READ MORE - Memahami Drag and Drop Dalam Visual Basic 6
OLEDropMode = 1 - Manual
dan Property AutoSize = True
. Private Sub Picture1_OLEDragDrop(Data As DataObject, Effect As Long, Button As Integer, Shift As Integer, X As Single, Y As Single)Untuk melihat cara kerjanya, bukalah Windows Explorer draglah satu file gambar yang terdapat pada Windows Explorer tersebut, selanjutnya drop tepat di atas object PictureBox.
On Error GoTo ErrHandler
Picture1.Picture = LoadPicture(Data.Files(1))
Exit Sub
ErrHandler:
MsgBox "Error gambar tidak bisa diload"
End Sub