Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a sample code which copies one metafile to another location. First time it is succeeding but subsequent trials fails saying "The process cannot access the file because it is being used by another process". Please see my code

HENHMETAFILE hemf = GetEnhMetaFile(L"C:\Temp\MyMeta.emf");

CopyEnhMetaFile(hemf, L"C:\Temp\MyMetaCopy.emf"))

DeleteEnhMetaFile(hemf);

share|improve this question
Got the reason! We need to delete the handle returned by CopyEnhMetaFile() – user2071057 Feb 14 at 9:23

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.