Tagged Questions

0
votes
2answers
97 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 set ComVisible to …
1
vote
2answers
22 views

DirectX managed or unmanaged?

I need basic information about DirectX. Is it a managed API or Unmanaged? Can someone provide me some link etc. explaining this?
0
votes
3answers
94 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 find the right way …
0
votes
1answer
63 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. After playing around …
11
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 are left out?
4
votes
3answers
135 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 the WPF penetration …
4
votes
10answers
600 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 difference between …
0
votes
5answers
400 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?
2
votes
4answers
356 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 impersonation, I can see …
1
vote
2answers
171 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 when unmanaged …
3
votes
2answers
662 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 logic written in …
1
vote
1answer
52 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't have any version …
1
vote
2answers
64 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 implemented by all plugins is …
9
votes
4answers
3k 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 Microsoft there: …

1 2 3 4 5 6 next
15 30 50 per page