Questions tagged [unmanagedresources]

67 questions
0
votes
1 answer

What is your way of cleaning up image resources in a project

I'm doing a huge cleanup in my project, getting rid of old image resources. The way i do it is to go through every resource and search the code for a match on the resource name. how do you do it?
Oscar
  • 375
  • 3
  • 15
0
votes
1 answer

Debug .NET COM component

I have few questions regarding .NET COM component. Basically I'm developing a .NET COM server (.DLL) to support our legacy system,the idea is legacy system invoke COM Server method, .NET COM code intern call our Hosted WCF services. Initially, I…
IT Fresher
  • 155
  • 8
0
votes
2 answers

Killing external process when application dies

I've been working on a small piece that calls an external executable (ffmpeg in my case) And then I wrote a test and used test runner in a debug mode, now if I stop debugging (terminate) it still runs ffmpeg. I tried to kill the process in the…
iLemming
  • 34,477
  • 60
  • 195
  • 309
0
votes
1 answer

Missing Manifest exception Visual Studio 2010 project converted from 2003, 2008

I have a Win Forms C++ solution that was initially created with Visual Studio 2003, converted to 2008 (successfully) and now I'm attempting to convert it to Visual Studio 2010. The solution builds without errors then when run I get a missing…
0
votes
4 answers

IDisposable and Destructors in abstract base class

I have an abstract base class which implements IDisposable and the full bool disposed = false, Dispose(), and Dispose(bool) pattern except for the destructor. The base class implements IDisposable since many of its derived classes need to release…
resgh
  • 974
  • 2
  • 12
  • 22
-1
votes
1 answer

How do I correctly call Poco functions from managed C++ code?

I'm using pocoXML functions in a managed DLL, which is used by another managed C++ project. The managed DLL compiles perfectly. But when calling a DLL-function which uses a poco function, I get a Debug Assertion Fail (is_block_type_valid) in…
-2
votes
2 answers

Can any one explain why StreamWriter is an Unmanaged Resource.

Want to understand what part of StreamWriter source code is Unmanaged code. Have went through the code in http://referencesource.microsoft.com/ website. But it seems to be complex code to understand,there is good comments in the source code. But…
sameer
  • 1,635
  • 3
  • 23
  • 35
1 2 3 4
5