alreadyinuse3000
Technical User
hi there,
i have a small code, which helps me to access a website.
now i only want the internet explorer to copy a word from the text and save it into a variable.
the code so far:
Sub scanner()
myUrl = "Set IEApp = CreateObject("InternetExplorer.Application")
IEApp.Navigate myUrl
Do: Loop Until IEApp.Busy = False
Do: Loop Until IEApp.Busy = False
IEApp.Visible = True
IEApp.Document.all.Search.Value = "testword"
SendKeys "{TAB}}", True
' ??? well, and exactely this word should be copied to a variable
End Sub
Does anybody know he vba-statement?
Many thanks
i have a small code, which helps me to access a website.
now i only want the internet explorer to copy a word from the text and save it into a variable.
the code so far:
Sub scanner()
myUrl = "Set IEApp = CreateObject("InternetExplorer.Application")
IEApp.Navigate myUrl
Do: Loop Until IEApp.Busy = False
Do: Loop Until IEApp.Busy = False
IEApp.Visible = True
IEApp.Document.all.Search.Value = "testword"
SendKeys "{TAB}}", True
' ??? well, and exactely this word should be copied to a variable
End Sub
Does anybody know he vba-statement?
Many thanks