Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Routines to parse html tables in vfp
Message
 
To
28/03/2001 16:57:34
General information
Forum:
Visual FoxPro
Category:
Internet applications
Miscellaneous
Thread ID:
00489286
Message ID:
00490075
Views:
11
This is very interesting and has tons of possibilities.

Where does one find this information about automating ie like that? I looked in the msdn.microsoft.com stuff but didn't see it there. Is there some utility available that will tell you what automation classes are installed on your machine and what is available to them?


>This should be fairly straightforward by automating IE:
>
>oIE = CREATEOBJECT("InternetExplorer.Application")
>oIE.Navigate("Someplace.com/somefile.htm")
>oTable = oIE.Document.Body.all("mytable") &&assuming the table has an id or name assigned
>FOR EACH oRow IN oTable.Rows
> FOR EACH oCell IN oRow.Cells
> ?oCell.InnerText
> ENDFOR
>ENDFOR
>
Previous
Reply
Map
View

Click here to load this message in the networking platform