Loading an xml

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello - I have a userform that loads an xml file with the initiallization
event then populates a listbox using an xpath query. I need to populate up
to 6 listboxes with filters based on what the user selected from the previous
listbox. So I am loading the xml with click events, and it is a very large
file. Is there a way to load it when the form initializes and keep it loaded
until the form is unloaded?
 
Create a global variable to hold the document and it should be maintained between selections.
 
Okay.. Because it so big, do I need to worry about dumping when the userform
is unloaded?
--
Thanks,
Mike


Tim Williams said:
Create a global variable to hold the document and it should be maintained between selections.
 
If the form is unloaded then it should be dumped automatically.
How big is it?

Tim

Mike Archer said:
Okay.. Because it so big, do I need to worry about dumping when the userform
is unloaded?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top