Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

92
votes
5answers
35k views

What does 'useLegacyV2RuntimeActivationPolicy' do in the .NET 4 config?

While converting a project that used SlimDX, and therefore has unmanaged code, to .NET 4.0 I ran into the following error: Mixed mode assembly is built against version 'v2.0.50727' of the runtime ...
15
votes
2answers
875 views

Access Violation probem with unhandled managed Exceptions in managed C++ .NET application

This is actually a solved problem, but it's so esoteric I thought I'd share it for other users. Also perhaps others might suggest reasons? Anyway, I'm working on a "mixed mode" .NET application ...
9
votes
3answers
1k views

New SQLite mixed assemblies

Previously .NET SQLite libraries were available from http://sqlite.phxsoftware.com, but they have recently been taken over by the main SQLite team and have moved System.Data.SQLite Download Page. The ...
6
votes
3answers
4k views

Mixed mode assembly in .NET 4

I wrote a class library in .NET 2.0 for database access some 2 years ago and have been using it all along on .NET 2.0, 3.0 and 3.5. In the current project I'm working on (which is a .NET 4.0 ...
6
votes
3answers
289 views

My application is unmanaged. Where do I start introducing managed code?

My whole application (which is rather big, with a 20MB executable) is written in unmanaged C++. Because I can clearly see the advantages in using managed code, I want to start introducing managed code ...
6
votes
5answers
3k views

Memory leak in Mixed Mode C++/CLR application

I'm having problems with a slow memory leak in my mixed mode C++/CLR .NET application. (It's C++ native static libraries linked into a VS2008 C++/CLR Windows Forms app with the "/clr" compiler ...
5
votes
2answers
155 views

Accessing Assembly language from C++

This is my programming assignment. I need to find out the largest among the array of integers using a method written in 8086 programming language. This is my attempt : #include <iostream.h> ...
5
votes
5answers
3k views

C++/CLI Mixed Mode DLL Creation

I've got a native C++ DLL that I would like to have a C++/CLI wrapper layer for. From what I understood, if you simple added a C++/CLI class to the project, VS would compile as mixed mode, but I was ...
5
votes
2answers
1k views

ASP.NET MVC and mixed mode authentication

I have a scenario whereby I require users to be able to authenticate against an ASP.NET MVC web application using either Windows authentication or Forms authentication. If the user is on the internal ...
4
votes
1answer
204 views

Memory debugger for mixed-mode C++ applications

I have to maintain a large C++ mixed-mode application (VC++ 2005, CLR-support: /clr:oldsyntax). I suspect the program has a number of memory leaks but it's hard to find them manually. For native C++ ...
4
votes
2answers
584 views

How to call a .NET dll from a win32 process?

What are the options when it comes to using a .NET dll from a win32 process? I need to basically use a C# dll from a Win32 process. I have a possible solution right now that requires adding the C# ...
4
votes
3answers
3k views

How do I set a Data Breakpoint in mixed( C#/C++ ) debugging?

I launch my program in C#, which then calls some unmanaged C++. When I break on a line in the unmanaged C++, the 'New Data Breakpoint' menu item is grayed out. Is there anyway around this?
3
votes
3answers
3k views

Creating a Mixed Mode C++ Bridge from C to C#?

I hope someone can help me with this, I'm mostly a C# developer so my C and C++ skills are bad. I have a native C dll that is a plugin of a larger application. I cross compile this dll for windows ...
2
votes
1answer
91 views

Disabling concurrent GC for a mixed mode application

The setup: I have a unmanaged/native Win32 application that I inject my code into. My code is primarily managed, written in C++/CLI and compiled as a DLL. My loader/injector patches the application's ...
2
votes
1answer
48 views

Mixed Mode on Windows CE / Compact Framework

is there a way to create a mixed mode application/dll for Windows CE (version 6.0), with installed Compact Framework (version >2.0)? The Source Code was written in C++. I only succeded in building ...
2
votes
1answer
193 views

Native/Mixed-mode dll linking error in vs2010

I am trying to understand how native code can interact with .NET code and am basically trying to implement the example in the answer to this topic. The example code has two parts, one that goes into a ...
2
votes
1answer
520 views

How to create mixed managed/native C++ dll in VS2010?

I want to create a dll which has a managed C++ interface, but the actual code working underneath is native C++. Currently we are using COM (STA) to interface with the managed code, but now we want to ...
2
votes
1answer
334 views

HTTPS and HTTP Mixed Content in IE 7 and IE 8

I have an application that I would like to be mostly ssl based but allow http links to coexist on https pages in IE7 and IE8. When I put mixed content (embed http links on https served pages) I get ...
2
votes
1answer
350 views

C++/CLI mixed mode debugging hangs (Frequently)

I am facing a process hang problem while debugging in mixed mode C++/CLI with a native application. This is unbearable, almost 70% of my debugging this happens and I need to restart the process again ...
2
votes
2answers
474 views

Managed code references between any cpu and x64

I have a mixed-mode C++/CLI project which is compiled as x86 and x64 frozen dlls. I have a C# app that needs to use this project which is compiled as "Any CPU". How can I properly reference the ...
2
votes
3answers
913 views

SQL Server 2005 mixed mode authentication

just wondering is it possible to use mixed mode on sql server 2005 for user sa? I know how to do this in management studio but this isn't enough for user "sa". I think it needs done else where. I am ...
2
votes
1answer
387 views

Mixed mode assembly [log4net] won't load in .NET 4.0, nor will it work when recompiled for .NET 4.0

I hate to ask a question that's been asked here countless times, as well as been blogged about all over the place, but I still can't get my upgraded project to work. My application was originally ...
2
votes
1answer
155 views

How can I debug into an unmanaged BCL (InternalCall) method?

I want to debug into the implementation of a [MethodImpl(MethodImplOptions.InternalCall)] BCL method, which is presumably implemented in C++. (In this particular case, I'm looking at ...
2
votes
1answer
267 views

Mixing WebForms and MVC: What should I do with the MasterPage?

I want to start migrating a WebForms App to MVC. The process will be gradual, so both systems must co-exist. The question is: Should I have two MasterPages, one for the WebForms pages and other for ...
2
votes
2answers
547 views

C++ COM C# Mixed Mode Interoperation

I'm trying to understand my options for calling a C# library implementation from unmanaged C++. My top level module is an unmanaged C++ COM/ATL dll. I would like to integrate functionality of an ...
2
votes
1answer
1k views

Native C Dll calling C++/CLI Mixed Mode Dll - Unhandled Exception

I have a Native C Dll that is dynamically loaded by a legacy application. The intent of this dll is to allow overriding of application behavior based on certain application events. I have a C# dll ...
2
votes
2answers
1k views

.NET mixed multi-file assembly

I need to create a .NET assembly composed of 2 modules: 1 internal (in the DLL) with native code and 1 external (in a .netmodule file). This would be easy to do, except for the native part. C#'s ...
2
votes
1answer
1k views

Mixed language statically linking with gfortran and gcc

I have some code written in C and Fortran that I want to compile into a statically-linked executable. If I compile the code dynamically (using the -fno-underscoring option for gfortran), it all works ...
2
votes
1answer
531 views

Mixed mode MFC application not intializing correctly in VS2008

I have converted a mixed mode MFC application from VS2005 to VS2008. It is compiling OK but when starting the application I get an assert in afxwin1.inl because afxCurrentResourceHandle = NULL. This ...
2
votes
5answers
1k views

Visual Studio: Garbled debug watch of std::string's?

When I'm debugging C++ mixed (managed/unmanaged) projects in Visual Studio 2005, I often get weird data from the debug watches, like below : (btw, the variable i_processName is a const std::string ...
1
vote
1answer
45 views

Mixed Managed/Unmanaged Assembly Load Order

I have some questions about the order of initialization for the CLR and the CRT for mixed .NET assemblies (i.e. meaning mixed managed/unmanaged C++ assemblies). So if I have a mixed mode assembly dll ...
1
vote
0answers
110 views

Mixed-mode C++/CLI DLL throws exception on exit

I am having a problem with a C++/CLI mixed mode DLL that I created. It is throwing an exception when unloading as the .NET application that uses it exits. After DLL_PROCESS_DETACH is executed, the ...
1
vote
2answers
50 views

Check Value of .NET Handle ^

Here's my situation: I have .NET wrapper-objects in a C++/CLI layer that hold pointers to unmanaged C++ objects. I've implemented the finalizer so that it deletes the unmanaged memory pointed to by ...
1
vote
2answers
84 views

New SQL Server Install Mixed Mode authentication not allowing Windows Authentication

I have a new instance of SQL Server 2008 RS Standard Edition. I enabled Mixed-Mode Authentication but I can't get Windows Authentication to work. I get the Error: 18456, Login Failed for user ...
1
vote
3answers
210 views

Visual Studio 2010 hangs during debugging of C++ / CLI (mixed mode ) projects

After Google the issue i found that it was reported already but nothing useful yet from MS. I wonder if any one found a work around it?
1
vote
0answers
85 views

Mixed mode assembly issue in a class library

I have a common problem with a unique twist. I am running VS2010 and using a cluster of 3rd party DLLs that must have been compiled in a previous framework. Of course I get the following error: ...
1
vote
1answer
307 views

How do I fix the CRT dependency causing a FileLoadException with my vc2005 mixed-mode DLL on XP?

I have a mixed-mode DLL built in visual studio 2005. In dependency walker, my DLL is showing a dependency of the following CRT Dlls. Note this is on my Windows 7 developement machine. ...
1
vote
1answer
2k views

Linking unmanaged C++ DLL with managed C++ class library DLL

As in the question Creating simple c++.net wrapper. Step-by-step I am tring to use C++ classes in .NET but I am having problems building in Visual Studio (2008). I have an unmanaged class A (C++ ...
1
vote
2answers
614 views

IIS 7.5 and mixed-mode authentication (single sign on)

Has anyone managed to achieve this? Application should work like this: App admin can add AD users App admin can define users not from AD If user is added from AD and trying to access to application ...
1
vote
1answer
263 views

Why Inline asm in C++/CLI creates horrible problem?

I am using Inline asm in C++/CLI. Horrible problem infact could be a bug I obsereved. I passed vector from one function call to another. If I comment the whole code snippet of _asm{....some assembly ...
1
vote
3answers
166 views

How to identify which framework an assembly is loaded in?

A user reported to us that some strange behaviour in our application can be resolved after installing .NET 4: <?xml version="1.0" encoding="utf-8" ?> <configuration> <startup> ...
1
vote
1answer
407 views

Mixed mode assembly not loading symbol for native C++ pdbs

I am working with mixed mode assemblies in C++/CLI. All managed mode assembled pdb's get loaded when successfully in mixed mode assembly, but native dll's and pdb's are not getting loaded even though ...
1
vote
2answers
660 views

mixed mode authentication against AD and fallback to the database if it fail with Membership providers

my user will use form authentication against Active Directory or database. Theres no Windows Integrated Authentication there!! What i want is when the user submit the authentication form, it will try ...
1
vote
1answer
395 views

How can I enable the intellisense on my c++/cli project?

I am using visual studio 2008 and I have a native c++ project that loads a managed c++ dll, but on the last one, the intellisense doesn't work anymore only for the managed code. This project (dll) ...
1
vote
2answers
428 views

Can managed and unmanaged C++/MFC be mixed in one dll?

Previously we had software in MFC (VC6), VB6 and C# applications that needed to call the same engine written in C++ (and MFC). The engine required C++ for speed. At the time we decided to use COM as ...
1
vote
2answers
182 views

How can I compile some parts of C++/CLI code as Native and some part as Managed?

I am calling LoadTypeLib for loading unmanaged type libraries in C++/CLI. I need to compile some code areas as managed and some code areas as unmanaged (native) and form a mixed mode class library as ...
1
vote
1answer
93 views

Can Windows find unmanaged DLLs not in the path, GAC or Registry?

Can Windows find the unmanaged (non-COM) DLLs of a mixed-mode application if these DLLs are not in the application directory or Windows path? I noticed VS 2008 does not appear on the path, and I was ...
1
vote
2answers
387 views

How to determine which C/C++ objects use most memory

I have a mixed mode application (managed and native) which has a high memory footprint. I already have found out that most of the memory is allocated by native code. I am not talking about a memory ...
1
vote
4answers
617 views

Help postmorten debugging of a mixed mode Win32 application

Here's the situation: Background I have a mixed mode .NET/Native application developed in Visual Studio 2008. What I mean by mixed mode is that the front end is written in C++ .NET which calls ...
1
vote
5answers
2k views

Mixed Mode Library and CRT Dependencies - HELP

Alright, after doing a ton of research and trying almost every managed CPP Redist I can find as well as trying to copy my DLLs locally to the executing directory of the app I cannot figure out what ...

1 2