How do you register a bunch of DLL's and Scriptlets from a Visual Basic program? These DLL's are not PART of the program, just copied from a source and then need to be registered for another program to work.
Thanks.
Printable View
How do you register a bunch of DLL's and Scriptlets from a Visual Basic program? These DLL's are not PART of the program, just copied from a source and then need to be registered for another program to work.
Thanks.
Works for any COM component:
http://support.microsoft.com/support.../Q173/0/91.ASP
Thanks for the excellent article.
Now is there anyway to register COM objects DYNAMICALLY without hardcoding their string names and paths into my .EXE file?
(I want to parse through a directory that contains only Scriptlets and DLL's, put them into some kind of array a register/unregister them on-the-fly without needing to know how many, or what their names are at design-time.)
Thanks for any thoughts.