all groups > dotnet interop > july 2007 > threads for july 22 - 28, 2007
Filter by week: 1 2 3 4 5
Heap Corruption Issue using Manifest Files
Posted by Suds at 7/27/2007 4:39:30 PM
Hi,
I have been using Reg-Free COM to load a .NET assembly using a CPP client
using manifest files. Recently I deployed my .NET assembly, and the loading
of my .NET assembly was leading to heap corruption and eventually the
crashing my application. I was able to develop a sample project that... more >>
Strange tlb-reference problem in VS2005
Posted by Henning Friese at 7/27/2007 5:52:22 AM
Hi NG,
I'm encountering a strange problem with a reference to an activex-tlb
from my C#-VS2005-project. Sometimes when I try to build the project I
get build-errors like "Type or namespace xxx not found..." where xxx
is a namespace within the tlb. The reference-symbol in the solution-
explore... more >>
Showing Modeless Dialog using the CCW?
Posted by herc at 7/26/2007 1:52:12 PM
I have modified my project from the previous post and am not using
exclusively the COM callable wrapper (CCW)...
I have C++ code calling into .Net 1.1 code via the CCW. There is on
call that launches a Managed modeless dialog. Right now the dialog
starts to draw the frame but that is it. Th... more >>
Regasm is for ComVisible .NET Assemblies -AND- PIA's???
Posted by Mike S at 7/24/2007 6:16:01 PM
OK, I used to think I understood what RegAsm was for: if you are
exposing a .NET assembly to COM, you RegAsm the assembly to add all of
the necessary COM entries to the registry so that the COM runtime can
instantiate your ComVisible .NET classes - I thought that was the *one
and only* scenario ... more >>
How to use generics in an interface?
Posted by Juan Dent at 7/23/2007 7:32:01 PM
Hi,
I have an interface that uses generics in its methods:
[ComVisible(false)]
public interface IGenericProperty
{
bool GetProperty<T>(string propName, out T value);
}
I have marked it [ComVisible(false)] because COM can't handle generics.
However the class th... more >>
|