1
vote
2answers
20 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
83 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 …
4
votes
3answers
134 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 …
0
votes
1answer
55 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 …
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?
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 are left out?
1
vote
1answer
48 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
61 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 …
0
votes
5answers
370 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#?
0
votes
2answers
122 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 MyUnmanagedFunc in the …
1
vote
2answers
163 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 …
0
votes
2answers
89 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 …
0
votes
3answers
189 views
Equivalent code in managed C++ & C# (Events in VB6)
In VB6 events created in an ActiveX component were stated like this:
Public Event ProcessingComplete()
and called in that ActiveX component like:
RaiseEvent ProcessingComplete
I am creating a …
1
vote
2answers
142 views
Loader lock (regsvr32 R6033 error) with managed C++ dll
I have a C++ dll which implements several COM interfaces, that I'm trying to migrate to managed C++. I set the /clr compiler flag and changed the Runtime Library property from /MT to /MD to avoid the …
0
votes
1answer
415 views
Making a custom mesh in C# managed DirectX
I need to make a DirectX 3D mesh at run time using Managed DirectX from C#. I have not been able to locate any information on how to do this.
No, I can't use a 3D modeler program to make my …
