Dick

Does this help?

http://www.vbws.com/tutors/xsd/xsdvb.aspx

The nitty-gritty part seems to be

Dim schemaCache As MSXML2.XMLSchemaCache40
Set schemaCache = New MSXML2.XMLSchemaCache40
schemaCache.Add ��,�D:\schemas\mySchema.xsd�
Dim doc As MSXML2.DOMDocument40
Set doc = New MSXML2.DOMDocument40
Set doc.schemas = schemaCache
doc.async = False
If Not doc.Load(�D:\docs\myDoc.xml�) Then
        MsgBox "Error loading XML document: " & doc.parseError.reason
End If

which CFOBJECT could handle I dare say.

Nick
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to