P
Programming Dan
Guest
I am currently using the SendKeys on the web page drop down as below:
The web page that I am using is: Betfair : Greyhound Racing Guide
The select id ="meetings"
wb1.Document.GetElementById("meetings").Focus() 'Get focus on race times SendKeys.Send("^{DOWN}") 'Scroll down
SendKeys.SendWait("-1") 'Wait until sendkey has completed
The problem that I have is,while my software project is running (scrolling through the web page drop down list) I am unable to use any other app on my desktop.
Example:
When I use Excel or notepad,it will keep entering -1-1-1-1-1 continuously, until I click on my projects form.(returning the focus)
This is driving me mad,and would love to find a way to scroll through each item in a web page drop down list while using another app at the same time.
Continue reading...
The web page that I am using is: Betfair : Greyhound Racing Guide
The select id ="meetings"
wb1.Document.GetElementById("meetings").Focus() 'Get focus on race times SendKeys.Send("^{DOWN}") 'Scroll down
SendKeys.SendWait("-1") 'Wait until sendkey has completed
The problem that I have is,while my software project is running (scrolling through the web page drop down list) I am unable to use any other app on my desktop.
Example:
When I use Excel or notepad,it will keep entering -1-1-1-1-1 continuously, until I click on my projects form.(returning the focus)
This is driving me mad,and would love to find a way to scroll through each item in a web page drop down list while using another app at the same time.
Continue reading...