Click here to Skip to main content
15,888,579 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I created a DOM document. After performing my tasks with it is there any need to Release it? And if yes, then how?

HRESULT hr =spDoc.CreateInstance(__uuidof(DOMDocument40));

This is how I declared the document. How to Release?
Posted
Comments
Pablo Aliskevicius 22-Oct-12 6:13am    
What is spDoc?
If it is a smart pointer, it will release itself when it goes out of scope.
If is is a raw DOMDocument40 pointer, call ->Release() on it one line above the line where it goes out of scope.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900