Thanks! the problem was someone physically moved my dll to another folder so the path didn't match. thanks!
-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Fri, October 29, 2004 14:58 To: [EMAIL PROTECTED] Subject: [AspClassicAnyQuestionIsOk] Digest Number 598 There are 2 messages in this issue. Topics in this digest: 1. Re: can't create object From: Mingle <[EMAIL PROTECTED]> 2. RE: can't create object From: "Adelle Hartley" <[EMAIL PROTECTED]> ________________________________________________________________________ ________________________________________________________________________ Message: 1 Date: Thu, 28 Oct 2004 07:40:49 -0700 From: Mingle <[EMAIL PROTECTED]> Subject: Re: can't create object Hi, Visit this Link http://support.persits.com/show.asp?code=PS02061296 Or instead type your exact Error message in Google and MSDN. Generally msdn has causes, and solutions of some standard Errors. Yours look like a case wherein the required DLL file needs to be reinstalled or something similar. Mingle. On Thu, 28 Oct 2004 13:44:22 +0200, Taly Reinish <[EMAIL PROTECTED]> wrote: > > Hi all > I HAVE ASP page. I try to create an object and get error '8007007e' > > my code is: > Set oMail = CreateObject("dllname.funcname") > > thaks > Taly > > [Non-text portions of this message have been removed] > > > > Yahoo! Groups Links > > > > > -- Mingle Work Smarter not Harder ________________________________________________________________________ ________________________________________________________________________ Message: 2 Date: Fri, 29 Oct 2004 08:11:24 +1000 From: "Adelle Hartley" <[EMAIL PROTECTED]> Subject: RE: can't create object Hi, > Hi all > I HAVE ASP page. I try to create an object and get error '8007007e' > > my code is: > Set oMail = CreateObject("dllname.funcname") CreateObject can only be used to create objects that are registered in the registry. The most common cause of this error is that the required DLL is either not installed or not registered. The next most common cause of this error is that one or more DLLs on which the component depends is either not installed or not registered. ActiveX Dlls can be registered from the command line using RegSvr32.exe. To register a DLL that is installed on your server: RegSvr32.exe "C:\FullPathToDll.DLL" To unregister the DLL RegSvr32.exe /u "C:\FullPathToDll.DLL" If this does not solve your problem, you should use "Depends.exe" (a utility that comes with Visual Studio) to determine the DLLs dependencies and then check that those dependencies are also installed correctly. Adelle. ________________________________________________________________________ ________________________________________________________________________ ------------------------------------------------------------------------ Yahoo! Groups Links ------------------------------------------------------------------------ ------------------------ Yahoo! Groups Sponsor --------------------~--> Make a clean sweep of pop-up ads. Yahoo! Companion Toolbar. Now with Pop-Up Blocker. Get it for free! http://us.click.yahoo.com/L5YrjA/eSIIAA/yQLSAA/saFolB/TM --------------------------------------------------------------------~-> Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/AspClassicAnyQuestionIsOk/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
