Registering Dlls

DekaFlash

Well-known member
Joined
Feb 14, 2006
Messages
117
Programming Experience
1-3
How do I register a dll file (class) ?

I have a application that uses a dll but I am getting the error:

An unhandled exception of type 'System.Runtime.InteropServices.COMException' occurred in system.windows.forms.dll
Additional information: Class not registered
 
You don't register a regular .Net class library (dll), you simply Add Reference to it from the assembly (project) that want to use it. Go main menu "Project", "Add Reference...", browse to locate it and click OK.
 
Back
Top