Jebenso,
Thank you! That does the job!
Here is my sub:
Private Sub WB_DocumentCompleted(ByVal sender As Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WB.DocumentCompleted
Clipboard.Clear()
WB.Focus()
SendKeys.SendWait("^a") ' select
SendKeys.SendWait("^c") ' copy
txtData.Focus()
SendKeys.Send("^v") ' paste
End Sub
However, the DocumentCompleted sub appears to be getting executed more than once - the data appears repeated in txtData 2 or 3 times.
Perhaps I need to set a switch to stop it after one time?