Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
3answers
1k views

AssemblyInfo.cs: Is there any point in specifying a Guid when using ComVisible(false)?

When you create a new C# project in Visual Studio, the generated AssemblyInfo.cs file includes an attribute specifying an assembly GUID. The comment above the attribute states that it is used "if this ...
6
votes
1answer
2k views

Is it possible to implement a COM interface with a .NET generics class?

I have the following interface which I'm trying to make COM-visible. When I try to generate the type-library it doesn't like the fact that my implementation class derives from a generic-class. Is ...
4
votes
1answer
195 views

Is it possible to build a .NET DLL with COM visible types without VS requiring elevation?

An assembly in a project has a type marked with ComVisible(true). When building (non-elevated), VS tries to register that DLL and fails: Cannot register assembly "\path\to\foo.dll" - access denied. ...
3
votes
3answers
316 views

any possibility to call C# function with javascript?

I wrote an office addin and with which there is a function : openFile(String path) and in the office addin I embed a browser object and with that I can embed a webpage on the office addin, and now I ...
3
votes
1answer
801 views

Calling .NET 2.0 assemblies in .NET 1.1

Recently I developed a internal framework in .NET 2.0 version, which is basically classes and helpers. The problem is I have some .NET 1.1 sites and applications and would like to use my framework ...
3
votes
2answers
799 views

Exposing a .NET class (which has events) to COM

I want to expose a .NET class to COM. That's fairly easy: I create an interface in where I define the members of that class that should be ComVisible I define the DispId's of those members myself I ...
3
votes
1answer
1k views

ComVisible in C++/CLI

i'm converting C++ to C++/CLI and would like to expose some managed classes as COM objects. In C# it was easy and setting [ComVisible] & inheriting from interface (also ComVisible) did the job. ...
2
votes
1answer
251 views

ObjectForScripting with multiple Interfaces not working

I have a WinForm which interacts with a WebBrowserControl through the ObjectForScripting. The baseclass of my WinForm is not ComVisible and I can not or will not change it. Because there is a ...
2
votes
2answers
365 views

Marshal.ReleaseComObject throws exception

Trying to use a COM visible .NET class via other .NET application and get exception: Message: The object's type must be __ComObject or derived from __ComObject. Parameter name: o Stack ...
1
vote
2answers
56 views

ComVisible .NET assembly and app.config

I have .NET assembly with some classes marked as ComVisible This assembly is registered with regasm /codebase "assembly_path" I have app.config name (actually - MyAssemblyName.dll.config) which are ...
1
vote
1answer
104 views

Add reference to VS 6.0 C++ help!

I am a CS student who is in an intern. My supervisor is really busy and he said I could use this site if I have questions. I need to modify a VS6.0 C++ program. I have made a C# class library that is ...
1
vote
2answers
396 views

Debug com visible dll managed code

I have written a COM visible dll, which will be called from a native Win32 program. For debugging purposes I added a simple WinForms client to the solution containing the dll. Now when I set a ...
1
vote
1answer
73 views

Com Visibility in referenced assemblies

If I have the follwing assemblies: MyComVisibleApi: a .Net assembly that is used by a VB app MyReferencedAssembly: a .Net assembly referenced by MyComVisibleApi Does MyReferencedAssembly need to ...
1
vote
2answers
319 views

How I can use an app.config file with a comvisible class library?

I'm working on this ComVisible class library that uses a third party component.This component needs some settings to be added to the config file.Since the application that uses my dll is a VB 6 ...
1
vote
3answers
2k views

warning MSB3391: <DLL> does not contain any types that can be unregistered for COM Interop

I've made a simple C# DLL (that's part of a much larger project) using VS2005. I need to use the DLL in Excel via VBA code so I am using COM Interop on the assembly. I am trying to make the build ...
0
votes
1answer
110 views

CA1017 ComVisible related errors with VS2010 StyleCop

I have CA1017 error message with StyleCop saying I need to make it ComVisible false. Error 18 CA1017 : Microsoft.Design : Because 'NationalInstruments.Labview.FPGA.ModelsimCommunicator.dll' ...
0
votes
1answer
665 views

Making .NET assembly COM-visible and working for VB5

I have an assembly which I have managed to make visible to VB6 and it works, but having a problem accomplishing the same thing with VB5. For VB6, I have built the assembly, made it COM-visible, ...