Referencing an ActiveX dll - Urgent

TheWizardofInt

Well-known member
Joined
Dec 31, 1969
Messages
333
Location
Orlando, FL
I use the following to reference the activex dll, IWGMProcs.dll, which was written in VB 6

Dim GMApps As New IWGMProcs.clsGMApp()

I already added it to the VS.Net project and registered the dll successfully. The dll resides in Winnt/System32 in a Win2kPro PC

When I run the debugger, the debug process highlights that line of code and says that I need to reassign access rights to the file, and goes on about the <machine>/ASP user

So I found all instances of the .dll (it reinstalls the dll to three other locations when it runs) and reset rights to those files, then to the top most folder of those files.

The error persists

Anyone seen and overcome this before?

Thanks
 
I think it has to do with a reference I set from the beginning of the project, to the dll

Does anyone know how to remove references?

I have tried to conquer this as a permissions issue. Resetting permissions throughout the project and making aspnet a power user did not overcome the issue, s oI am thinking that the location of the dll is wrong and that the project is looking for something that doesnt exist and handling it as an access problem

Thanks
 
Back
Top