I have managed to open Internet Explorer and paste in the web site address that I want to go to. The web page has loaded.
I now need to scan the screen looking for certain text, I would also like to scan the screen at particular row and column and then so many charectors. for example
smiler44
I now need to scan the screen looking for certain text, I would also like to scan the screen at particular row and column and then so many charectors. for example
Code:
'6 is column from left, 3 is row down from top and 9 is number of 'charectors to retrive
dim Getstring as string
Getstring(6, 3, 9)
textbox1.text = Getstring
smiler44