R
RC
I now want to load a large XML file.
How to show the updating progress on the progress bar?
The difficulty is how can I get the amount of the file being loaded.
XmlDocument doc = new XmlDocument();
doc.load(data.xml); //<---it takes long time to load
Any sample code or solution provided?
How to show the updating progress on the progress bar?
The difficulty is how can I get the amount of the file being loaded.
XmlDocument doc = new XmlDocument();
doc.load(data.xml); //<---it takes long time to load
Any sample code or solution provided?