I am working on a project that opens xml files into a TreeView window. I am able to import xml files into my window by using the following code...

Private Sub Form_Load()
Dim sFile As String
sFile = App.Path
If Right(sFile, 1) <> "\" Then sFile = sFile & "\"
sFile = sFile & "menu.xml"
XMLOnTreeView TreeView1, sFile
End Sub

The problem I'm having is that I need the name of the xml file to be a variable so that I can use an OpenFile from my menu to import any xml file that the user would like. Any assistance would be very appreciated. thanks,

Use the common dialog control... (Friends time (yahoo, google, ask, answers, bing) vb6 common dialog tutorial)

Good Luck

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.