stickleprojects Level: Moderator

 Registered: 09-09-2002 Posts: 963
|
Re: Looking for A Way to Use A .DLL without Running Regsvr32
Hi
You cannot use a COM DLL without it being registered. Registration is how windows gets told what to do when you use the reference in your project.
For deployment, use one of the many installatino packages that are floating around, or at worst case, use PAckage and Deployement wizard.
Recompiliing DLLS is a pain, and results in DLL-hell. I suggest you read up on compatibility settings before you start deploying your dll around the world 
.NET does allow for deployment without registered, so that may be the way forward for you (vb.net express is free)
____________________________
Build it better, faster, quicker, easier.. then fix it (non-offical MS mission statement)
|