|
こんにちは
ListView --------- ファイルをドロップ出来る程度の大きさ
テキストボックス -- ファイルパスを表示出来る程度の大きさ
を作っておいて、こんな感じで出来ると思うのですが、
Private Sub ListView1_OLEDragDrop(Data As ComctlLib.DataObject, Effect As Long, Button As Integer, Shift As Integer, x As Single, y As Single)
Me.TextBox1.Text = ""
ListView1.ListItems.Clear
If Data.Files.Count <> 1 Then Exit Sub
Me.TextBox1.Text = _
ListView1.ListItems.Add(1, "Key" & 1, Data.Files(1)).Default
End Sub
Private Sub UserForm_Activate()
With Me.ListView1
.BackColor = &H80000001
.ForeColor = &H80000001
.OLEDragMode = 1
.OLEDropMode = 1
.View = 2
End With
End Sub
|
|