Is any event generated when a file is dropped into the webbrowser window? I want to be able to identify the file dropped.
Printable View
Is any event generated when a file is dropped into the webbrowser window? I want to be able to identify the file dropped.
Use the BeforeNavigate2 event.
Code:Private Sub WebBrowser1_BeforeNavigate2(ByVal pDisp As Object, URL As Variant, Flags As Variant, TargetFrameName As Variant, PostData As Variant, Headers As Variant, Cancel As Boolean)
MsgBox URL
End Sub