0
votes
3answers
68 views
C# delegate with string reference to c++ callback
I wrote a C# application that uses an unmanaged c++ dll via managed c++ dll.
In the unmanaged dll, there's a callback that one of its params is std::string &.
I can't seem to …
0
votes
1answer
48 views
How can I remote debug on another workgroup machine?
I have used the "Attach to process" function within VS 2008 many times, but never actually on a remote machine. Now I have to do it and I already read a bunch about it on the net. …
26
votes
15answers
2k views
Memory Leak in C#
Is it ever possible in a managed system to leak memory when you make sure that all handles, things that implement IDispose are disposed?
Would there be cases where some variables …
4
votes
3answers
127 views
Switching to WPF. Is it time?
I'm considering switching from MFC to WPF.
My first concern is that there are too many users who don't have .NET with WPF installed yet. Can anybody point to a source containing t …
4
votes
10answers
594 views
How would you describe the difference between Managed/Byte Code and Unmanaged/Native Code to a Non-Programmer?
Sometimes it's difficult to describe some of the things that "us programmers" may think are simple to non-programmers and management types.
So...
How would you describe the diffe …
0
votes
5answers
352 views
Screen scraping a mainframe screen in C# *without* 3rd Party Utilities
I'm looking to screen scrape a 3270 mainframe application in C#, but I've got to do so without Attachmate or other 3rd party plugins. Are there free managed libraries to do so in C …
32
votes
36answers
7k views
Why was Google’s Chrome browser written almost entirely in C++ and not C# or Java?
Why was Google's Chrome browser written almost entirely in C++ and not C# or Java?
0
votes
2answers
88 views
Class Not Registered… when trying to call a managed C# library from unmanaged C++
Hey everyone,
I have a C# library that I am using for a COM object in unmanaged C++ code. I registered the library using Visual Studio's checkbox "Register For Com Interop" and s …
2
votes
4answers
347 views
Passing impersonation token on a Managed Thread to an Unmanaged Thread
I have a case where a VB.Net winforms app needs to play WMV files from across the network. The user running the app cannot be given direct access to the network share. Through impe …
1
vote
2answers
156 views
Changes not allowed when unmanaged debugging is enabled?
I get the error
changes not allowed when unmanaged debugging is enabled
Actually I get the below message but Google doesn't return many results
changes are not allowed w …
3
votes
2answers
633 views
HOWTO: Call Managed C# Interface From Unmanged C++ On WindowsCE Compact Framework
I have extensive unmanaged Windows CE 5 C++ code that provides a UI that I want to use in a new product by combining it with a large amount of newer business and communications log …
1
vote
1answer
46 views
Avoid loading .Net Dlls in a C++/CLI project?
I have a project written in C++/CLI. Some of the types there are in managed code, and some are in completely native code. Let's say I have the produced DLL on a machine that dosen' …
1
vote
2answers
57 views
How do I change the lookup path for .NET libraries referenced via #using in Managed C++?
I developed a DLL in Managed C++ which loads some plugins (implemented in any .NET language) at runtime using System.Reflection.Assembly.LoadFile. The interface which is implemente …
8
votes
4answers
2k views
Embedding unmanaged dll into a managed C# dll
I have a managed C# dll that uses an unmanaged C++ dll using DLLImport. All is working great.
However, I want to embed that unmanaged DLL inside my managed DLL as explain by Micros …
0
votes
2answers
104 views
Using WinDbg/SOS to debug managed->native callstack. I get “Failed to request ThreadStore”
MyManagedFunc in managed.exe calls into MyUnmanagedFunc() in unmanaged.dll. I produce a minidump in unmanaged.dll using Win32. SetUnhandledExceptionFilter. I can see MyUnmanage …
