Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Getting all tags('TD')
Message
From
13/06/2003 17:11:51
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Internet applications
Title:
Getting all tags('TD')
Miscellaneous
Thread ID:
00800022
Message ID:
00800022
Views:
81
I'm using VFP 7.0

I've opened an InternetExplorer.Application and navigated to the page I want.

I'm trying to get all the Document.All.Tags('TD') into an array that I can use in VFP.
Right now I'm doing:
loDoc = this.get_document_object()
FOR ln = 0 TO loDoc.ALL.LENGTH-1
  lo = loDoc.ALL(ln)
  IF lo.tagName == 'TD'
    .....
  ENDIF
ENDFOR
I would like to do something like this:
local la(1)
loDoc = this.get_document_object()
la = loDoc.All.tags('TD')
for ln = 1 to alen(la)
  .....
endfor
but loDoc.All.Tags('TD') returns an object, and I can't figure out how to use it.

TIA
Bill Morris
Next
Reply
Map
View

Click here to load this message in the networking platform