From: John Smith on
Here's what I have so far:

Dim WithEvents htmdoc As HTMLDocument
form_load set htmdoc....
Private Function htmdoc_ondragstart() As Boolean
Debug.Print "dragging"
call copyTextToClipboard
End Function

Function copyTextToClipboard grabs the text.

The above works OK so far, but I'm unable to change the cursor to
indicate the user is dragging text. I also can't target a button with
the new text on the clipboard.

Can someone recommend a better way to drag and drop text from a Browser
Control to a button?

Thank you