Sorry for the newbie question.
Started a project that reads xml files into a TreeView:
Code: Select all
Use "gb.xml"
Public Sub Form_Open()
LoadProjectView(TreeView1, "path-to-xml-file")
End
Private Sub LoadProjectView(ProjectView As TreeView, ProjectFile As String)
ProjectDoc = New XmlDocument ' <-- Error here: Unknown identifier: XmlDocument
ProjectDoc.Open(ProjectFile)
End
TIA