Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Reading XML Message
Message
From
24/05/2008 07:15:13
 
 
To
23/05/2008 09:42:32
Jay Johengen
Altamahaw-Ossipee, North Carolina, United States
General information
Forum:
Visual FoxPro
Category:
Other
Environment versions
Visual FoxPro:
VFP 9 SP2
Miscellaneous
Thread ID:
01318749
Message ID:
01319333
Views:
22
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.
Previous
Reply
Map
View

Click here to load this message in the networking platform