VB6 Implementation of XML Parser - vbrad.com - .NET/ASP.NET/COM/VB.NET/C# information/components
Option Explicit Private Sub btnLoadXmlFile_Click() Dim oDoc As MYXMLDOM.XMLDOC 'first pick the file With cd .Filter = "XML Files (*.xml) |*.xml" .ShowOpen If Len(.FileName) = 0 Then Exit Sub End With Set oDoc = New MYXMLDOM ......