Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Getting all tags('TD')
Message
De
13/06/2003 17:11:51
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Applications Internet
Titre:
Getting all tags('TD')
Divers
Thread ID:
00800022
Message ID:
00800022
Vues:
82
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
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform