If I attach to a page which contains the data in the attached file
test.html 14.78K
4 downloads why doesn't the following work? I'm working towards this output:
but can't get the data - I thought that "C004_gridStructuredResults_ctl00__"& $i" can't be done but it doesn't even work if I put in a static example like "C004_gridStructuredResults_ctl00__"5.
![Attached File](http://aut1.autoit-cdn.com/forum/public/style_extra/mime_types/html.gif)
../opinions/SA34_12.html|RICHARD GOLLIN v. TRIP ADVISOR LIMITED|Sheriff Principal Derek C.W. Pyle|25/02/2013|28/02/2013
but can't get the data - I thought that "C004_gridStructuredResults_ctl00__"& $i" can't be done but it doesn't even work if I put in a static example like "C004_gridStructuredResults_ctl00__"5.
[ autoit ]
#include $oIE = _IEAttach("Sheriff Court") For $i = 1 To 5 $oDiv = _IEGetObjById($oIE, "C004_gridStructuredResults_ctl00__"& $i") ConsoleWrite(_IEPropertyGet($oDiv, "innertext") & @CRLF) Next