Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
MSXML in VFP
Message
 
To
02/07/2002 15:19:23
Fabian Borghi
Xenon Information Technology
Itaparica, Brazil
General information
Forum:
Visual FoxPro
Category:
Client/server
Title:
Miscellaneous
Thread ID:
00674661
Message ID:
00674852
Views:
23
>Somebody have an example of MSXML2.DOM in VFP 7.0 ?

You can also work with MSXML2.DOM using ADO and XML Simple Provider:
oRs = CreateObject("ADODB.Recordset")
oRs.ActiveConnection = "Provider=MSDAOSP;Data Source=MSXML2.DSOControl.2.6;"
oRs.Open("portfolio.xml")

? oRs.Fields(0).Name
Do While !oRs.Eof
	? oRs.Fields(0).Value
	oRs.MoveNext()
EndDo
Previous
Reply
Map
View

Click here to load this message in the networking platform