Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Getting all tags('TD')
Message
 
 
À
13/06/2003 17:11:51
Information générale
Forum:
Visual FoxPro
Catégorie:
Applications Internet
Divers
Thread ID:
00800022
Message ID:
00800029
Vues:
32
Try
FOR EACH loTD IN loDoc.All.Tags('TD')
...
ENDFOR
>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
--sb--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform