problem with asppdf

pangolin_10

Member
Joined
Sep 2, 2005
Messages
14
Location
India
Programming Experience
1-3
hi, i have downloaded asppdf.dll on a machine and on copying this dll to an asp.net application on another machine , i am unable to use this dll in my application. the application when run says, "com object not registered or not valid". plzz help.
 
Sounds like that .dll is a COM dll, so you will need to run regsvr32 on that asppdf.dll: regsvr32 -i asppdf.dll.
If that .dll has any dependent COM .dlls you will need to do the same for those if they are not already registered.
Remember COM .dll's still require registration unlike .NET .dll's
 
Back
Top