Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Reading XML Message
Message
De
24/05/2008 07:15:13
 
 
À
23/05/2008 09:42:32
Jay Johengen
Altamahaw-Ossipee, Caroline du Nord, États-Unis
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Versions des environnements
Visual FoxPro:
VFP 9 SP2
Divers
Thread ID:
01318749
Message ID:
01319333
Vues:
23
This message has been marked as a message which has helped to the initial question of the thread.
> Foxpro Debugger does not show all the levels of this object, and it was mostly by chance that I found references in some online documentation. How anyone gets through this stuff is amazing to me.

The debugger can often not drill down the properties of subobjects, thats true.
The same goes for Intellisense.

What often helps is to create a new root for VFP by setting up a new variable:
oSub = oSomething.Somesubobject, eg

oAck = oXMLDoc.documentElement.getElementsByTagName('ack')

The reason here is, getElementsByTagName('ack') returns an object but itself is a method, so intellisense cannot drill down to what will be the result of the call. Once you make that call and got that object oAck, the debugger or intellisense can drill down on it's properties again.

What helps with item-Collections is a For Each loop over the collection.

Bye, Olaf.
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform