Tagged Questions
The regasm tag has no wiki summary.
6
votes
1answer
6k views
Use Visual Studio Setup Project to automatically register and GAC a COM Interop DLL
I've created a .NET assembly for COM interop and it is working well on my development machine. I'm currently trying to figure out how to deploy the DLL to a target machine using Visual Studio's ...
5
votes
3answers
4k views
Why does regasm.exe register my c# assembly with the wrong GUID?
I've got a c# assembly which I'm invoking via COM from a Delphi (win32 native) application.
This works on all the machines I've tested it on, except one.
The problem is that the Delphi application ...
4
votes
2answers
278 views
Registering a .NET dll for use in VB6 application
I have a DLL I wrote in C# which I want to use in my VB6 application.
In VS2008 the project property "Register for COM interop" is checked, and when I compile the DLL and try to use it on my ...
4
votes
1answer
229 views
Registering a winform usercontrol as a COM server
I am trying to register a winform user control as a COM Server so my MFC applications can use them. The winform control is written in C++/CLI and uses an unmanaged native dll. I want to make use of ...
3
votes
3answers
323 views
Why exactly does regasm warn me about signing with a strong name?
If I want to make a .NET assembly usable as a COM server I have to add a set of attributes and then use regasm to register it as a COM server.
If the assembly is not signed with a strong name regasm ...
3
votes
3answers
390 views
Consume a .NET Assembly from a classic ASP page
I have an old .net 2005 web site that has some asp pages and having object reference problem accessing .net dll. The maintenance task was handed down to me and the original developer is nowhere to be ...
3
votes
1answer
121 views
Property/Method Descriptions for COM Libraries
If you create a COMClass, I've noticed that the values in the XML Summary tag do not show in the object browser of VB6/VBA when you reference the resulting tlb file. Is there a way to have these ...
3
votes
1answer
2k views
How to Register a Type Library without RegAsm.exe
I want to know if it's possible to register a type library without using the RegAsm tool. Here is my situation, which will hopefully explain why I want to do this:
I'm developing an assembly in .NET ...
3
votes
5answers
5k views
Problem registering a dll - Access Denied
When trying to run regasm in Win2008 Server:
regasm "C:\Program Files\FooProg\Bar.dll" /tlb:"C:\Program Files\FooProg\Bar.tlb"
I get the following error:
RegAsm : error RA0000 : An error ...
3
votes
4answers
1k views
Unable to call c# code from vbscript - ActiveX error
i am trying to call a method i have written in c# from vbscript.
I have followed just about all of the instructions i can find on the web and am still having problems.
Specifically i am getting the ...
3
votes
1answer
406 views
using .NET Assemblies in Delphi
I am currently required to open and use a .NET assembly in delphi. The Assembly that i am trying to use also has an assembly of objects it is using. With the object assembly i was able to use regasm ...
3
votes
2answers
2k views
what is difference b/w RegAsm.exe and regsvr32 ?? How to generate a tlb file using regsvr32?
Can any body tell me what is diff between regsvr32 and RegAsm and My Dll is C# dll so how can i import the classes to c++.
3
votes
4answers
927 views
C#: Regasm generating registry entries for every class in my COM DLL?
I'm writing a class-library (IE BHO) in C# and currently wrangling with the large volume of what I think is junk output coming from REGASM's generated registry keys.
The short version is this: I only ...
2
votes
1answer
135 views
Excel DNA - Can I avoid doing a regasm all together?
I am trying to evaluate Excel DNA to use it in one of my excel add-in. I use C# functions (.NET 4.0) and want to invoke these functions from Excel. The reason I am interested is, the users of my addin ...
2
votes
3answers
171 views
Use Type Library (.tlb) in a VB6 project, ActiveX create object fail
I created a dll and tbl files from C# Visual Studio 2008.
I Regasm AssemblyName.dll /tlb: FileName.tlb /codebase to register it to my local server.
Use the tlb reference. Compile it, it runs fine ...
2
votes
1answer
118 views
In WXS, how to I refer to a file that is installed via a different component?
This question refers to output from heat.exe. I'm trying to do "the right thing" with respect to registering some .NET assemblies for COM interop in the MSI. Regasm.exe is the wrong thing.
...
2
votes
1answer
122 views
Registering a COM object created with VS C# 2010
I created a COM object with C# yesterday which resulted in three files in the bin/release directory of my VS 2010 project. comclass.dll, comclass.pdb and comclass.tlb. Now, when I build the solution ...
2
votes
1answer
135 views
Get IDL code from TypeLibrary programmatically
I am writing code to perform the following steps;
Register a .net .dll and generate a .tlb using regasm.exe
Register a .net .dll and generate a .tlb using regasm.exe
Generate the IDL code from the ...
2
votes
1answer
385 views
c++ managed and unmanaged static library
I have a some managed C++ assembly with simple code.
This assembly has mixed (managed/unmanaged) code. If I put unmanaged code to the separate unmanaged static library and link it with managed code ...
2
votes
2answers
3k views
How to register a legacy typelib (.tlb) on Windows 7?
I have a new PC running Windows 7 and Visual Studio 2010, and need to register a legacy typelib (.tlb) to interface with an existing legacy application. However, regtlib.exe does not seem to be part ...
2
votes
2answers
796 views
Unregistering old versions of a .net assembly
I have an assembly that has a lot of old registered versions.
The only dll I have is the last one.
How can I unregister all versions of the assembly?
Thanks.
EDIT : I want to do this at runtime so ...
2
votes
0answers
83 views
Need to move .Net Assemblies to Program Files after Windows Update
I have a legacy windows client application that uses a several .Net assemblies (I created), one with a COM wrapper. The client application resides in a root drive subfolder (c:\somefolder...). ...
2
votes
1answer
605 views
Regasm writes mscoree.dll into Registry key InprocServer32
When I register my .NET Assembly with regasm.exe the registry key
HKEY_CLASSES_ROOT\CLSID{111E32AD-4BF8-495F-AB4D-6C61BD463EA4}\InprocServer32
is set to "mscoree.dll".
However, I am trying to ...
2
votes
1answer
417 views
RegAsm for Class Library Used in VB6 Application
To be short and to the point, I've built a C# class library that is both COM-Visible and Registered for COM Interop. I've compiled the library, which resulted in the generation of .dll and .tlb ...
2
votes
1answer
478 views
A .tlb file must be registered?
I have a com interop c++ dll that is loaded in c++ throught the .tlb file generated in c#.
When I run in my computer it works fine but when I run in a computer that just got formated it gives:
...
2
votes
1answer
219 views
How Does a COM Program Locate a .NET DLL Registered for COM Interop?
One customer wants to consume our .NET DLLs from VB6. They are designed to support reverse interop and all works fine... except: There are two separate VB6 programs in two different directories. It ...
2
votes
1answer
314 views
C# COM Interop Library
Hey all,
I am currently porting a legacy VBA application to a .Net application. During this process the users of the existing VBA application need to have some features added. So instead of coding ...
2
votes
2answers
315 views
Remotely run Regasm?
I have a C# COM component that needs to be pushed out & registered to a remote computer. Does anyone know if this is possible via the Regasm?
2
votes
3answers
981 views
How to unregister my .net assembly when it's no longer in the same location?
I have a dll that's registered for com interop, so under HKLM\Software\Classes\CLSID[my guid]\InprocServer32[my version no]\Codebase it has the path of the registered dll. However, I've rearranged my ...
1
vote
2answers
77 views
How to deploy a .dll file using Visual Studio 2008?
I am creating an installer with VS 2008 containing a desktop application and a BHO plugin
which is created as a Class Library project.
Manually ,I can register myPlugin.dll using this command [regasm ...
1
vote
3answers
204 views
Registering a generated VB.Net DLL assembly programmatically without locking the DLL
I've got a simple VB.Net 4 WinForms application that does basic code generation. The code generation creates a DLL assembly perfectly fine, but each time the DLL is generated it needs to be registered ...
1
vote
0answers
77 views
How do i find regasm.exe in the installer of my program?
My program uses registered by regasm.exe .net classes.
On my computer regasm.exe located at C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319 folder, but on another computer it maybe located at ...
1
vote
1answer
104 views
How to use Regasm.exe to Completely Unregister a AssemblyFile
I tried the following command to unregisters AssemblyFile:
regasm "AssemblyFilePath" /unregister /silent
However, it still leaves the such registry entries:
Windows Registry Editor Version 5.00
...
1
vote
0answers
79 views
registering .net assembly as com
I have a C# class library which calls a native code DLL. I am trying to call this code from VBA.
I configured MSVC to register the generated DL and it works fine. I can access objects in DLL and work ...
1
vote
1answer
105 views
Can you use RegAsm with an executable?
I have an exe that I want to register. I have the type library by using the tlbexp tool, but when I try and regasm the executable, I get an error RA0000. Apparently the "operation is not supported"? ...
1
vote
1answer
251 views
Using a .NET-2.0-targeted COM DLL in the GAC on a .NET-4-only system
Greetings again,
Following up my previous question, I'm trying to maximize the compatibility of my C#-written Windows Explorer extension. In particular, I'm interested in making sure it works in an ...
1
vote
1answer
358 views
Register a COM dll in the GAC with WiX
Greetings all,
I'm working on a WiX installation script for my program. I need to install a C# dll to the GAC and then register it. So, I mark the file with Assembly=".net" so that WiX GACs it for ...
1
vote
1answer
75 views
weird COM behavior in VBA
I have an excel vba module calling a C# COM dll. Sometimes, I get this weird behavior that I'm hoping someone might be able to explain. I'm getting a type mismatch when I step through the debugger ...
1
vote
1answer
395 views
using regasm for an framework 4.0 assembly located on UNC share
I am trying to register a .Net 4.0 compiled binary using regasm utillity. This ComInterOp assemply has to be deployed on a network share, and trying to register from the share fails with the error ...
1
vote
2answers
516 views
regasm and tlb (registering a .NET library for COM interop)
I have .NET assembly with one public class and several private classes.
I am trying to register it for COM interop so that I can call it from VBA, using the following command:
regasm /tlb foo.dll ...
1
vote
2answers
374 views
.NET: are regasm and caspol dependent on which user is logged
When using regasm and caspol to register and grant trust to assemblies, will it matter under which user account these utilties are executed?
Could there arise a situation where assemblies are ...
1
vote
1answer
91 views
.net regasm question
Lets say we have this scenario a setup that deploys a .net com dll and runs regasm on it, this setup has no uninstall so unregister Will never be called.. And you can run the setup over and over ...
1
vote
1answer
134 views
What account do COM+ components run under when regasm is used?
What account do COM+ components run under when registered via the regasm tool? I didn't notice any command parameters for regasm to identify the account. Given regasm requires admin privileges to ...
1
vote
2answers
863 views
How does .NET/COM work with multiple versions registered via Regasm?
I have a .NET DLL (that happens to be written in C++/CLI). Parts of it I want to expose via COM. I do this and register it using "regasm my.dll /codebase". So far so good. But then I change some ...
1
vote
1answer
3k views
Regasm and Com Interop false negatives
I'm attempting to expose our library via COM but seem to be fighting the tools more than the actual problem. Regardless of how I write my COM exposed class I get the warning: "XXX.dll does not contain ...
1
vote
2answers
587 views
COM: OLE Viewer unable to create instance of class
Using OLE/COM Viewer I get the following error (when expanding my registered class)
CoGetClassObject failed.
<No system message defined> severity: SEVERITY_ERROR, facility:
<Unknown ...
1
vote
1answer
176 views
Wrong Object Returned from COM Callable Wrapper
I have just made an update to a dll that is called from VBA within Powerpoint. All development went fine, but when I tried to deploy on another users machine I get a problem that I have no idea how ...
1
vote
2answers
471 views
Overloads in COM interop (CCW) - IDispatch names include suffix (_2, _3, etc)
I have a managed assembly containing a few classes, and those classes have overloaded methods. I expose the assembly to COM/IDispatch callers via
[ComVisible(true)]
..and also setting the proper ...
1
vote
1answer
1k views
DllRegisterServer for C# dll?
Is there an equilivant to DllRegisterServer for C# dll's? I am creating a COM component and I would like to have some custom code run when I regasm the dll.
1
vote
1answer
539 views
Calling .net assembly from vb6 results in runtime error 424
I'm running into some trouble calling a .net assembly from vb6 and was hoping SO could help.
In VB.net I built a ComClass and kept the default constructor and GUIDs.
When deploying, I REGASM.exe the ...